为什么这个java代码没有正确解析我的Xml?

Oma*_*eji 2 java xml dom

我编写了一个类来解析一些xml到一个对象并且它无法正常工作,当我尝试获取一个节点的值时,我得到一个null而不是该节点的内容.

这是我的类的简化版本,它只对单个节点进行xml解析:

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;

import org.apache.log4j.Logger;
import org.apache.log4j.xml.DOMConfigurator;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;

public class XmlReaderCutDown {

    private static Logger logger = Logger.getLogger(CtiButtonsXmlReader.class);

    public static void testXml(String confFile){
        DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
        try {
            DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
            Document doc = docBuilder.parse(new File(confFile));
            doc.getDocumentElement().normalize();
            if (logger.isDebugEnabled()){
                logger.debug("The root element is " + doc.getDocumentElement().getNodeName());
            }

            NodeList rows =  doc.getElementsByTagName("row");

            NodeList topRowButtons = ((Element)rows.item(0)).getElementsByTagName("button");
            logger.debug("Top row has " +topRowButtons.getLength() + " items.");
            Node buttonNode = topRowButtons.item(0);

            NodeList nodeList = ((Element)buttonNode).getElementsByTagName("id");
            logger.debug("Node list count for "+ "id" + " = " + nodeList.getLength());
            Element element = (Element)nodeList.item(0);
            String xx = element.getNodeValue();
            logger.debug(xx);
            String elementValue = ((Node)element).getNodeValue();
            if (elementValue != null) {
                elementValue = elementValue.trim();
            }
            else {
                logger.debug("Value was null");
            }
            logger.debug("Node id = "+ elementValue);

        } catch (ParserConfigurationException e) {

            logger.fatal(e.toString(),e);
        } catch (SAXException e) {
            logger.fatal(e.toString(),e);
        } catch (IOException e) {
            logger.fatal(e.toString(),e);
        } catch (Exception e) {
            logger.fatal(e.toString(),e);
        }

    }


    public static void main(String[] args){
        DOMConfigurator.configure("log4j.xml");

        testXml("test.xml");
    }
}
Run Code Online (Sandbox Code Playgroud)

这是我的xml文件的精简版本:

<?xml version="1.0"?>
<root>
    <row>
        <button>
            <id>this is an id</id>
            <action>action</action>
            <image-src>../images/img.png</image-src>
            <alt-text>alt txt</alt-text>
            <tool-tip>Tool tip</tool-tip>
        </button>
    </row>
</root>
Run Code Online (Sandbox Code Playgroud)

这是日志记录语句输出的内容:

DEBUG XmlReaderCutDown - 根元素是root

DEBUG XmlReaderCutDown - 顶行有1个项目.

DEBUG XmlReaderCutDown - id = 1的节点列表计数

DEBUG XmlReaderCutDown -

DEBUG XmlReaderCutDown - 值为null

DEBUG XmlReaderCutDown - 节点id = null

为什么不在xml节点中获取文本?

我正在使用JDK 1.6_10运行

Val*_*her 6

因为你得到的元素是文本的父元素,包含你需要的文本.要访问此元素的文本,您应使用getTextContent而不是getNodeValue.

有关更多信息,请参阅Node javadoc中的表.