I have an object (basically a VO) in Java and I don't know its type.
I need to get values which are not null in that object.
How can this be done?
|
I have an object (basically a VO) in Java and I don't know its type. How can this be done?
| ||||
feedback
|
|
You can use In short:
To learn more about reflection, check the Sun tutorial on the subject. That said, the fields does not necessarily all represent properties of a VO. You would rather like to determine the public methods starting with
That in turn said, there may be more elegant ways to solve your actual problem. If you elaborate a bit more about the functional requirement for which you think that this is the right solution, then we may be able to suggest the right solution. There are many, many tools available to massage javabeans. | ||||
|
feedback
|
|
Here's a quick and dirty method that does what you want in a generic way. You'll need to add exception handling and you'll probably want to cache the BeanInfo types in a weakhashmap.
See these references:
| ||||
|
feedback
|
Maybe you don't necessary need reflection for that -- here is a plain OO design that might solve your problem:
I guess that you need the field that are null to display an error message in a generic way, so that should be enough. Let me know if this doesn't work for you for some reason. | |||
|
feedback
|