10
<person>
<firstname>
<lastname>
<salary>
</person>

这是我正在解析的 XML。当我尝试打印人的子元素的节点名称时,我得到

文本

文本

文本

薪水

如何消除生成的#text?

更新 - 这是我的代码

try {

    NodeList nl = null;
    int l, i = 0;
    File fXmlFile = new File("file.xml");
    DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
    dbFactory.setValidating(false);
    dbFactory.setIgnoringElementContentWhitespace(true);
    dbFactory.setNamespaceAware(true);
    dbFactory.setIgnoringComments(true);

    dbFactory.setCoalescing(true);


    InputStream in;
    in = new FileInputStream(fXmlFile);
    Document doc = dBuilder.parse(in);
    doc.getDocumentElement().normalize();
    Node n = doc.getDocumentElement();

    System.out.println(dbFactory.isIgnoringElementContentWhitespace());
    System.out.println(n);

    if (n != null && n.hasChildNodes()) {
        nl = n.getChildNodes();

        for (i = 0; i < nl.getLength(); i++) {
            System.out.println(nl.item(i).getNodeName());
        }
    }
} catch (Exception e) {
    e.printStackTrace();
}
4

1 回答 1

6

setIgnoringElementContentWhitespace仅当您使用 时才有效setValidating(true),并且仅当您正在解析的 XML 文件引用 DTD 时,解析器可以使用该 DTD 来确定哪些纯空格文本节点实际上是可忽略的。如果您的文档没有 DTD,它会在安全方面犯错,并假定不能忽略任何文本节点,因此您必须编写自己的代码以在遍历子节点时忽略它们。

于 2012-10-10T10:57:05.610 回答