解析不带标记名的xml

bea*_*rUA 4 java xml w3c document

我有一个xml文件

<Response>
<StatusCode>0</StatusCode>
<StatusDetail>OK</StatusDetail>
<AccountInfo> 
    <element1>value</element1>
    <element2>value</element2>
    <element3>value</element2>
    <elementN>value</elementN>   
</AccountInfo>
</Response>
Run Code Online (Sandbox Code Playgroud)

我想解析AccountInfo中的元素,但是我不知道元素标签名称。

现在我正在使用并使用此代码进行测试,但是将来我会在AccountInfo中收到更多元素,但我不知道有多少个名称

String name="";
String balance="";
 Node accountInfo = document.getElementsByTagName("AccountInfo").item(0);

        if (accountInfo.getNodeType() == Node.ELEMENT_NODE){
            Element accountInfoElement = (Element) accountInfo;
            name = accountInfoElement.getElementsByTagName("Name").item(0).getTextContent();
            balance = accountInfoElement.getElementsByTagName("Balance").item(0).getTextContent();
        }
Run Code Online (Sandbox Code Playgroud)

ug_*_*ug_ 5

您可以通过以下两种方法来做到这一点:

Node accountInfo = document.getElementsByTagName("AccountInfo").item(0);
NodeList children = accountInfo.getChildNodes();
Run Code Online (Sandbox Code Playgroud)

或者你可以做

XPath xPath = XPathFactory.newInstance().newXPath();
NodeList children = (NodeList) xPath.evaluate("//AccountInfo/*", document.getDocumentElement(), XPathConstants.NODESET);
Run Code Online (Sandbox Code Playgroud)

一旦拥有了NodeList,就可以遍历它们。

for(int i=0;i<children.getLength();i++) {
    if(children.item(i).getNodeType() == Node.ELEMENT_NODE) {
        Element elem = (Element)children.item(i);
        // If your document is namespace aware use localName
        String localName = elem.getLocalName();
        // Tag name returns the localName and the namespace prefix
        String tagName= elem.getTagName();
        // do stuff with the children
    }
}
Run Code Online (Sandbox Code Playgroud)