使用DocumentBuilder进行XML解析

时间:2013-06-27 17:30:45

标签: java xml

我正在尝试将xml解析为键值对的映射,如下所示。

示例xml文档:

<Students>
    <StudentA>
        <Id>123</Id>
        <Address>123 W </Address>
        <Courses>
            <Course1>CS203</Course1>
            <Course2>CS206</Course2>
        </Courses>
    </StudentA>
    <StudentB>
        <Id>124</Id>
        <Address>124 W </Address>
        <Courses>
            <Course1>CS202</Course1>
            <Course2>CS204</Course2>
        </Courses>
    </StudentB>
</Students>

xml解析器代码:

/**
 * Parse the given xml data.
 * @param xmlString The xml string to be parsed.
 * @return Non-null list of {@link DiscreteDataEntry} values, may be empty.
 */
Map<String, String> parseXML(final String xmlString)
{
    final String xmlDataToParse = xmlString;

    parentNode = "";
    try
    {
        final InputStream inputStream = new ByteArrayInputStream(xmlDataToParse.getBytes());
        final DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
        documentBuilderFactory.setNamespaceAware(true);
        final DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder();
        final Document document = documentBuilder.parse(inputStream);
        final Map<String, String> data = createMapOfAttributeValuesKeyedByName(document.getDocumentElement());
    }
    catch (final Exception exception)
    {
        System.out.println("Exception:" + exception);
    }

    return data;
}

/**
 * A recursive method which will loop through all the xml nodes.
 * @param node The node.
 * @return Non-null map of test values keyed by test name, may be empty.
 */
Map<String, String> createMapOfAttributeValuesKeyedByName(final Node node)
{
    final Map<String, String> attributeValuesKeyedByName = new LinkedHashMap<String, String>();
    final NodeList nodeList = node.getChildNodes();
    for (int index = 0; index < nodeList.getLength(); index++)
    {
        final Node currentNode = nodeList.item(index);
        if (node.getFirstChild() != null && node.getFirstChild().getNodeType() == Node.ELEMENT_NODE)
        {
            parentNode = getAncestralOrigin(currentNode);
            attributeValuesKeyedByName.putAll(createMapOfAttributeValuesKeyedByName(currentNode));
        }
        else if (node.getFirstChild() != null && node.getFirstChild().getNodeType() == Node.TEXT_NODE)
        {
            final String attributeName = parentNode.length() > 0 ? parentNode + "." + node.getNodeName().trim() : node.getNodeName().trim();
            final String attributeValue = node.getTextContent().trim();
            attributeValuesKeyedByName.put(attributeName, attributeValue);
            parentNode = "";
        }
    }

    return attributeValuesKeyedByName;
}

/**
 * Parses a give node and finds all its ancestors.
 * @param node The node whose ancestors have to be found.
 * @return A non-null but possible empty string built using the ancestors of the node.
 */
final String getAncestralOrigin(final Node node)
{
    String ancestralOrigin = "";
    final Node currentParentNode = node.getParentNode();
    if (currentParentNode != null && currentParentNode.getNodeType() != Node.DOCUMENT_NODE)
    {
        ancestralOrigin = currentParentNode.getNodeName();
        final String ancestor = getAncestralOrigin(currentParentNode);
        if (ancestor.length() > 0)
        {
            ancestralOrigin = ancestor + "." + ancestralOrigin;
        }
    }
    return ancestralOrigin;
}

地图的输出是:

Key:[Students.StudentA.Id], Value:[123]
Key:[Students.StudentA.Address], Value:[123 W]
Key:[Students.StudentA.Courses.Course1], Value:[CS203]
Key:[Students.StudentA.Courses.Course2], Value:[CS206]
Key:[Students.StudentB.Id], Value:[124]
Key:[Students.StudentB.Address], Value:[124 W]
Key:[Students.StudentB.Courses.Course1], Value:[CS202]
Key:[Students.StudentB.Courses.Course2], Value:[CS204]

但是如果使用

读取文件,则此输出正常工作
final BufferedReader bufferedReader = new BufferedReader(new FileReader(new     File(url.getFile().replaceAll("%20", " "))));

如果使用

读取相同的文件
DataInputStream is = new DataInputStream(new FileInputStream(new File(url.getFile().replaceAll("%20", " "))));

输出不同。它确实需要xml doc中的所有CR和LF。

关键:[学生],价值:[123         123 W

        CS203
        CS206



    124
    124 W 

        CS202
        CS204]

我正在使用依赖jar来读取使用DataInputStream的xml文件。

我一直认为我的xml解析器会处理CR / LF / NewLine看起来不像。 我在解析它之前用空字符串替换所有CR LF和NewLines。

但我想知道是否有其他xml解析器可以自行处理。还有什么是BufferedReader跳过CR / LF和NewLine的原因 但是DataInputStream不会。

还有其他更好的方法来查找子标记的祖先,我需要它们来使密钥值唯一。

xml将保持原样且无法更改。此外,xml与此处显示的不同,它将是带标签的通用xml 改变,所以我试图制作一个通用的xml解析器来解析xml子标签并将它们放入地图中。

可以复制子标签,因此,我使用子项的路径使其唯一。

还有一种方法可以通过删除父标记Student来递归地解析带有这些标记(StudentA / StudentB)的xml。

注意:xml格式更改,我解析的xml可能会针对每个xml文件进行更改。 所以我真的不能像学生A的孩子那样解析。

2 个答案:

答案 0 :(得分:0)

经过长篇描述后,我了解到,您希望了解其他更好的解析XML的方法。

答案是,,还有其他一些更好的方法来解析XML。使用StAXSAX,这些都是快速且更高效的内存。要了解更多信息,请阅读Java Tutorial的JAXP

答案 1 :(得分:0)

DataInputStream旨在只读取使用DataOutputStream ...即序列化Java对象编写的内容。它不用于阅读文本输入。