How to show result in JFrame Form if data source is a XML file?
问题 Here is the codes: I write XML file to a comment under this post. Developer: public class Developer { private String id; private String name; private String surname; private int age; public Developer(String id, String name, String surname, int age) { this.id = id; this.name = name; this.surname = surname; this.age = age; } public String getId() { return id; } public String getName() { return name; } public String getSurname() { return surname; } public int getAge() { return age; } } The