I have a class Person with 2 fields: Name and Age and I want to declare instance of this class inside the class like this.
public class Person implements ToCSV {
private String name;
private int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
public Person(){
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
Person p1 = new Person("Patrick", 24);
Person p2 = new Person("Bernard", 20);
Person p3 = new Person("Lam", 23);
}
My question is: Can I take all the value of object p1, p2, p3 by the general way?
My goal is save all object's data to a file like txt... The file will have something like this: "Patrick - 24, Bernard - 20, Lam - 23" and I want something so general for automatically generate the file txt. So I have to try to retrieve the object of class
I tried to use Java Reflection. It recognized p1, p2, p3 like the Fields but I cannot access to the value of this object. Any idea? Thanks for your attention!

p1,p2andp3to a file? Or do you really intent to have them as attributes of thePersonclass? – jlordo Dec 4 '12 at 0:20