2

我一直在寻找 JAVA 中的 XML 读取示例,我总是找到一个典型的模式根-> 3 个相等的儿子->3 个相等的孙子。

但有时你只需要获得一对不像图书馆那样存储的元素{标题,作者,页数}。我的 XML 看起来像:

<?xml version="1.0" encoding="UTF-8" ?>
<A>
    <Crap1>
        <CrapSon>1</CrapSon>
    </Crap1>
    <B>
        <Crap2>Store</Crap2>
        <C>
            <Type>N</Type>
            <D>
                <InterestingData1>Data</InterestingData1>
            </D>
            <InterestingData2>More Data</InterestingData2>
        </C>
    </B>
</A>

当然,我可以全部迭代,最后得到我想要的数据元素。但是有没有什么快速的方法可以访问你想要的那些元素,而无需迭代树,只是通过名称并让它搜索它?

4

3 回答 3

1

您可以使用javax.xml.xpathJava SE 5 及更高版本中的库,并使用 XPath 查询文档以获取所需的数据。

例子

于 2013-01-10T12:32:02.563 回答
1

您可以尝试以下方法:

import java.io.IOException;
import java.io.StringReader;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

class Test {    

    public static void main(String args[]) throws ParserConfigurationException, SAXException, IOException{
        String xmlString ="<A>" +
                "<Crap1><CrapSon>1</CrapSon>" +
                "</Crap1>" +
                "<B>" +
                "<Crap2>Store</Crap2><C><Type>N</Type><D><InterestingData1>Data</InterestingData1></D><InterestingData2>More Data</InterestingData2></C>" +
                "</B>" +
                "</A>";

        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();      
        DocumentBuilder docBuilder = dbf.newDocumentBuilder();
        Document doc = docBuilder.parse(new InputSource(new StringReader(xmlString)));

        NodeList nodelist = doc.getElementsByTagName("InterestingData2");
        NodeList nodelist2 = doc.getElementsByTagName("Type");

        String str = nodelist.item(0).getTextContent();
        String str2 = nodelist2.item(0).getTextContent();

        System.out.println("InterestingData2: "+str);
        System.out.println("Type: " + str2);
    }
}

输出:

InterestingData2:更多数据

类型:N

于 2013-01-10T14:00:14.407 回答
0

如果您不想要 DOM,我想您应该使用带有处理程序的 SAX 解析器来处理InterestingData1InterestingData2.

于 2013-01-10T12:30:40.737 回答