How do I determine bean's property type?
Category: commons.beanutils, viewed: 4882 time(s).
Using the PropertyUtils.getPropertyType() we can determine the bean property type. This method return a Class object of bean's property type.
package org.kodejava.example.commons.beanutils;
import org.apache.commons.beanutils.PropertyUtils;
public class PropertyType {
public static void main(String[] args) {
Recording recording = new Recording();
recording.setTitle("Magical Mystery Tour");
try {
/*
* Using PropertyUtils.getPropertyType() to determine the type of
* title property.
*/
Class type = PropertyUtils.getPropertyType(recording, "title");
System.out.println("type = " + type.getName());
String value = (String) PropertyUtils.getProperty(recording, "title");
System.out.println("value = " + value);
} catch (Exception e) {
e.printStackTrace();
}
}
}
Download Hundreds of Complimentary Industry Resources
Get hundreds of popular Industry magazines, white papers, webinars, podcasts, and more;
all available at no cost to you. With more than 600 complimentary offers, you'll find
plenty of titles to suit your professional interests and needs.
Click Here and Sign up today!