15

我有一个 XML 格式的字符串。我想阅读它并获取元素的值。

我已经尝试过 Java JAXBContext unmarshell,但这需要创建我不需要的类。

细绳:

<customer>
    <age>35</age>
    <name>aaa</name>
</customer>

我想获取agename的值。

4

6 回答 6

49

这是你的xml:

String xml = "<customer><age>35</age><name>aaa</name></customer>";

这是解析器:

DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
InputSource src = new InputSource();
src.setCharacterStream(new StringReader(xml));

Document doc = builder.parse(src);
String age = doc.getElementsByTagName("age").item(0).getTextContent();
String name = doc.getElementsByTagName("name").item(0).getTextContent();
于 2013-01-04T14:43:08.670 回答
9

JSoup对 XML 有很好的支持

import org.jsoup.*     
import org.jsoup.nodes.*   
import  org.jsoup.parser.*

//str is the xml string 
String str = "<customer><age>35</age><name>aaa</name></customer>"
Document doc = Jsoup.parse(str, "", Parser.xmlParser());
System.out.println(doc.select("age").text())
于 2013-01-04T14:43:01.557 回答
7

在标准 API 中使用XPath :

String xml = "<customer>" + "<age>35</age>" + "<name>aaa</name>"
    + "</customer>";
InputSource source = new InputSource(new StringReader(xml));
XPath xpath = XPathFactory.newInstance()
                          .newXPath();
Object customer = xpath.evaluate("/customer", source, XPathConstants.NODE);
String age = xpath.evaluate("age", customer);
String name = xpath.evaluate("name", customer);
System.out.println(age + " " + name);
于 2013-01-04T14:47:33.957 回答
2

JDOM非常容易使用:

SAXBuilder builder = new SAXBuilder();
File xmlFile = new File("c:\\file.xml");
Document document = (Document) builder.build(xmlFile);
Element rootNode = document.getRootElement();
List list = rootNode.getChildren("customer");

for (int i = 0; i < list.size(); i++) {

    Element node = (Element) list.get(i);

    System.out.println("Age : " + node.getChildText("age"));
    System.out.println("Name : " + node.getChildText("name"));         
}
于 2013-01-04T14:40:06.210 回答
1

就像我一样,对于拥有更多复杂 XML 的用户来说,这是一个花絮。如果您有同名但属性不同的元素,例如:

<field tag="8"> Country </field>
<field tag="12"> State </field>

提取它们的方法是遵循@vault 的答案,但请确保更改.item(int)函数中的值。

如果你想要你使用的第一个字段.item(0)。如果你想要第二个你使用.item(1)

希望这对未来的用户有所帮助,就像对我一样。

于 2017-04-20T17:49:32.537 回答
0

我用这个通用方法遍历所有元素:

public static void getElementValues(Node node) {
    NodeList nodeList = node.getChildNodes();
    for (int i = 0, len = nodeList.getLength(); i < len; i++) {
        Node currentNode = nodeList.item(i);
        if (len == 1 && currentNode.getNodeType() == Node.TEXT_NODE) {
            System.out.println(node.getLocalName() + "=" + currentNode.getTextContent());
        }
        else if (currentNode.getNodeType() == Node.ELEMENT_NODE) {
            getElementValues(currentNode);
        }
    }
}

结果:

age = 35
name = aaa
于 2018-09-21T12:40:16.963 回答