如何自己从XML文件构建DOM树,即不使用DocumentBuilder.parse(xml)?

时间:2012-08-15 05:37:20

标签: java xml dom xml-parsing

假设有一个简单的XML文件,如下所示:

<a>
    <b>hello</b>
    <c>world</c>
</a>

我想创建一个DOM树,而不使用Java库提供的解析器(我确实想使用其他API和数据结构,比如Element)。我熟悉lexing(标记化)部分,但是如何使用标记来构建树?

树创建算法是我从数据结构类中学到的。问题是如何在Java库中使用给定的DOM框架?例如元素,或节点,或 DOM API ,它们可以帮助将新节点插入到DOM树中。

我可以从中学到任何现有的例子吗?

1 个答案:

答案 0 :(得分:3)

DocumentBuilderFactory开始,创建一个DocumentBuilder,然后创建一个新的Document对象。从那里,Document具有添加元素,属性等的方法,因此您可以使用这些方法生成文档。

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
//dbf.setNamespaceAware(true); //If you need namespace support turn this on, it is off by default

Document doc = dbf.newDocumentBuilder().newDocument();

//Add a root element
Element rootElement = doc.createElement("root");
doc.appendChild(rootElement);

Attr att = doc.createAttribute("my-attribute");
att.setValue("value");
rootElement.appendChild(att);