forked from BruceEckel/OnJava8-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPeople.java
More file actions
33 lines (29 loc) · 972 Bytes
/
People.java
File metadata and controls
33 lines (29 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// serialization/People.java
// (c)2021 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
// nu.xom.Node comes from http://www.xom.nu
// {RunFirst: APerson}
import nu.xom.Builder;
import nu.xom.Document;
import nu.xom.Elements;
import java.io.File;
import java.util.ArrayList;
public class People extends ArrayList<APerson> {
public People(String fileName) throws Exception {
Document doc =
new Builder().build(new File(fileName));
Elements elements =
doc.getRootElement().getChildElements();
for (int i = 0; i < elements.size(); i++)
add(new APerson(elements.get(i)));
}
public static void
main(String[] args) throws Exception {
People p = new People("People.xml");
System.out.println(p);
}
}
/* Output:
[Dr. Bunsen Honeydew, Gonzo The Great, Phillip J. Fry]
*/