// serialization/People.java// (c)2017 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.*;import java.io.File;import java.util.*;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 voidmain(String[] args) throws Exception {People p = new People("People.xml");System.out.println(p);}}/* Output:[Dr. Bunsen Honeydew, Gonzo The Great, Phillip J. Fry]*/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。