我有以下方式的XML文件:
<head>
<username>bhnsub</username>
<error>0</error>
<account_id>633</account_id>
<info>
<mac>address_goes_here<mac>
<mac>address_goes_here</mac>
<mac>address_goes_here</mac>
<mac>address_goes_here</mac>
<mac>address_goes_here<mac>
</info>
</head>
我需要使用Java DOM解析器解析它并获取相应的值。 我需要将值放在信息列表中。
SAXBuilder builder = new SAXBuilder();
Document document = (Document) builder.build(new StringReader(content));
Element rootNode = document.getRootElement();
if (rootNode.getName().equals("head")) {
String username = rootNode.getChildText("username");
String error= rootNode.getChildText("error");
String account= rootNode.getChildText("account_id");
Element info= rootNode.getChildren("info");
List mac=info.getChildren("mac");
我不知道如何继续进行并使用该列表。
答案 0 :(得分:0)
这可以使用来自javax.xml.parsers和org.w3c.dom的东西。
List<String> macvals = new ArrayList<>();
DocumentBuilder db = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document document = db.parse(new File( "head.xml" ) );
Element rootNode = document.getDocumentElement();
if (rootNode.getTagName().equals("head")) {
NodeList infos = rootNode.getElementsByTagName("info");
if( infos.getLength() > 0 ){
Element info = (Element)infos.item(0);
NodeList macs = info.getElementsByTagName("mac");
for( int i = 0; i < macs.getLength(); ++i ){
macvals.add( macs.item( i ).getTextContent() );
}
}
}
System.out.println( macvals );
答案 1 :(得分:0)
首先,请确保您使用的是JDOM 2.0.6(或者以后如果您正在阅读此内容)。 JDOM 2.x已经用了5年左右,并且更好,因为它支持Java泛型,它有性能改进,并且如果你需要它也有更好的XPath支持。
尽管如此,您的代码将很容易&#34;写作:
SAXBuilder builder = new SAXBuilder();
Document document = builder.build(new StringReader(content));
Element rootNode = document.getRootElement();
if ("head".equals(rootNode.getName())) {
String username = rootNode.getChildText("username");
String error= rootNode.getChildText("error");
String account= rootNode.getChildText("account_id");
List<String> macs = new ArrayList<>();
for (Element info : rootNode.getChildren("info")) {
for (Element mac : info.getChildren("mac")) {
macs.add(mac.getValue());
}
}
}
请注意,我已经放了2个循环。您的代码有错误,因为它调用:
Element info = rootNode.getChildren("info");
但是getChildren(...)
会返回一个List,因此无法正常工作。在上面的代码中,我迭代遍历列表。如果只有一个&#34;信息&#34;元素,那么列表将只有一个成员。
另请注意,在JDOM 2.x中,getChildren(..)
方法返回Element列表:List<Element>
,因此无需将结果强制转换为Element
。