假设有一个简单的XML文件,如下所示:
<a>
<b>hello</b>
<c>world</c>
</a>
我想创建一个DOM树,而不使用Java库提供的解析器(我确实想使用其他API和数据结构,比如Element)。我熟悉lexing(标记化)部分,但是如何使用标记来构建树?
树创建算法是我从数据结构类中学到的。问题是如何在Java库中使用给定的DOM框架?例如元素,或节点,或 DOM API ,它们可以帮助将新节点插入到DOM树中。
我可以从中学到任何现有的例子吗?
答案 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);