我有一个这样的Java类:
public class Employee {
String Name;
int Id;
int Age;
void setName(String tempVal) {
Name = tempVal;
System.out.println(Name);
System.out.println("\n");
}
void setId(int parseInt) {
Id = parseInt;
System.out.println(Id);
System.out.println("\n");
}
void setAge(int parseInt) {
Age = parseInt;
System.out.println(Age);
System.out.println("\n");
}
}
现在我想使用链接中的代码使用 SAXParser 解析 employees.xml 文件:http: //totheriver.com/learn/xml/xmltutorial.html#5.2
问题是当我将 tempEmp 添加到列表并访问列表以在 printData() 方法中打印其值时,输出类似于:
No of Employees '3'.
Employee@140de537
Employee@1c43882a
Employee@15a08be5
现在,如何分别提取员工的姓名、年龄和身份证?