Part 2 My intention is to make all of my android videos as simple as possible, and as short as possible. That way you can learn what you need to, and get on with it. This is a quick demo on how to get started…
Category: Java
I’ve started a project called LDAP Persistence API for Java, or LPA for short. It is a Java framework for interacting with LDAP entries using pure Java objects. It is based on Java annotations. It is no were near to being complete, but the query…
In this article we talk about reflection with arrays in Java. Java array reflection is not difficult, but it can be trying to figure it out without a good example. Ultimately, what I needed was a way of injecting information into an array field. Of…
I thought it may be nice for those googlers that want to know about JAXB, to have a quick working example to use. So, that is the purpose of this post.
Seeing that my research project is a mini accounting system, I thought it necessary to be able to display items in a status bar, like a real application. It is very slightly unfortunate that ZK doesn’t have something integrated right in for this purpose. But,…
Once I had some basic functionality in my mini accounting system that I’m writing (for research purposes), one of my goals was to have an adequate error display for the user, that was the same every time. Suffice it to say, I was completely thrilled…
I am in the process of working with and researching ZK as an AJAX framework to integrate into Java Web Development that I do. So far, AJAX looks really amazing, and is fully integrated into the J2EE framework. It is an event driven framework that…
In this post, I plan on laying out multiple common problems with RMI, that a developer can run into. I hope that this will be a concise guide to fixing the common RMI problems that beginners run into. As I come up with more, I…
I’m just learning EJB3, and I’m stumbling here and there. When developing an EJB object, I had a problem where the compiler was giving me an error that says “annotation type not applicable to this kind of declaration“. It was on a line like the…
I’ve searched all over the Internet for this, and was unable to find anything reasonable. I found an example somewhere, of how to break a string at a specific location, but it breaks whether there is a word there or not. So, either you have…