Ich weiß, das ist ein Jahr alt Frage, aber ich denke, es kann für andere nützlich sein.
Ich habe eine Teillösung unter Verwendung dieses LOC
Field [] attributes = MyBeanClass.class.getDeclaredFields();
Hier ist ein funktionierendes Beispiel gefunden: Die Standard-toString Stil:
import java.lang.reflect.Field;
import org.apache.commons.beanutils.PropertyUtils;
public class ObjectWithSomeProperties {
private String firstProperty;
private String secondProperty;
public String getFirstProperty() {
return firstProperty;
}
public void setFirstProperty(String firstProperty) {
this.firstProperty = firstProperty;
}
public String getSecondProperty() {
return secondProperty;
}
public void setSecondProperty(String secondProperty) {
this.secondProperty = secondProperty;
}
public static void main(String[] args) {
ObjectWithSomeProperties object = new ObjectWithSomeProperties();
// Load all fields in the class (private included)
Field [] attributes = object.getClass().getDeclaredFields();
for (Field field : attributes) {
// Dynamically read Attribute Name
System.out.println("ATTRIBUTE NAME: " + field.getName());
try {
// Dynamically set Attribute Value
PropertyUtils.setSimpleProperty(object, field.getName(), "A VALUE");
System.out.println("ATTRIBUTE VALUE: " + PropertyUtils.getSimpleProperty(object, field.getName()));
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
Sie verwenden ToStringStyle wird DEFAULT_STYLE predifined Arten haben. MULTI_LINE_STYLE: Der mehrzeilige toString-Stil. NO_FIELD_NAMES_STYLE: Die no-Feldnamen toString Stil. SHORT_PREFIX_STYLE: Das kurze Präfix toString style. SIMPLE_STYLE: Der einfache toString-Stil. Sehen Sie, wenn einer von ihnen Ihren Zweck lösen kann –