我在Java中有一个对象(基本上是VO),但不知道其类型。
我需要获取该对象中不为null的值。
如何才能做到这一点?
Answers:
您可以Class#getDeclaredFields()
用来获取该类的所有声明的字段。您可以Field#get()
用来获取价值。
简而言之:
Object someObject = getItSomehow();
for (Field field : someObject.getClass().getDeclaredFields()) {
field.setAccessible(true); // You might want to set modifier to public first.
Object value = field.get(someObject);
if (value != null) {
System.out.println(field.getName() + "=" + value);
}
}
也就是说,这些字段不一定全部代表VO的属性。您想确定以get
或开头的公共方法is
,然后调用它以获取真实属性值。
for (Method method : someObject.getClass().getDeclaredMethods()) {
if (Modifier.isPublic(method.getModifiers())
&& method.getParameterTypes().length == 0
&& method.getReturnType() != void.class
&& (method.getName().startsWith("get") || method.getName().startsWith("is"))
) {
Object value = method.invoke(someObject);
if (value != null) {
System.out.println(method.getName() + "=" + value);
}
}
}
也就是说,可能会有更优雅的方法来解决您的实际问题。如果您详细介绍了认为这是正确解决方案的功能要求,那么我们也许可以提出正确的解决方案。有很多很多工具可以按摩Javabeans。
这是一种快速而肮脏的方法,它以一种通用的方式来完成您想要的事情。您将需要添加异常处理,并且可能需要将BeanInfo类型缓存在weakhashmap中。
public Map<String, Object> getNonNullProperties(final Object thingy) {
final Map<String, Object> nonNullProperties = new TreeMap<String, Object>();
try {
final BeanInfo beanInfo = Introspector.getBeanInfo(thingy
.getClass());
for (final PropertyDescriptor descriptor : beanInfo
.getPropertyDescriptors()) {
try {
final Object propertyValue = descriptor.getReadMethod()
.invoke(thingy);
if (propertyValue != null) {
nonNullProperties.put(descriptor.getName(),
propertyValue);
}
} catch (final IllegalArgumentException e) {
// handle this please
} catch (final IllegalAccessException e) {
// and this also
} catch (final InvocationTargetException e) {
// and this, too
}
}
} catch (final IntrospectionException e) {
// do something sensible here
}
return nonNullProperties;
}
请参阅以下参考: