我现有的xml文件看起来像
<transaction>
<id>
<in>computer</in>
<sn>1234567</sn>
<book>JAVA</book>
<author>klen</author>
</id>
<data>
<dateTime>2011-06-24T17:08:36.3727674+05:30</dateTime>
<key>Err</key>
</data>
</transaction>
但我想在<id>
节点之前添加节点。现在我有2个问题
1.使用dom perser之前如何添加节点?
2.除了dom解析器之外可以做到这一点吗?因为我给了一个演示xml原始xml很大所以我需要一个好的解析器来获得更好的性能。
我想添加此
<xs:schema id="transaction" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="transaction" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="id">
<xs:complexType>
<xs:sequence>
<xs:element name="in" type="xs:string" minOccurs="0" />
<xs:element name="sn" type="xs:string" minOccurs="0" />
<xs:element name="book" type="xs:string" minOccurs="0" />
<xs:element name="author" type="xs:string" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="data">
<xs:complexType>
<xs:sequence>
<xs:element name="dateTime" type="xs:dateTime" minOccurs="0" />
<xs:element name="key" type="xs:string" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="productData">
<xs:complexType>
<xs:sequence>
<xs:element name="dateTime" type="xs:dateTime" minOccurs="0" />
<xs:element name="key" type="xs:string" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
在<id>
节点下的<transaction>
节点之前。
答案 0 :(得分:3)
问题1:“使用dom perser之前如何添加节点?”
答案1:
我假设你正在使用org.w3c.dom。让node1
成为您文档中的Node。让node2
成为您文档中的另一个Node。你想要insert node1 before node2。
问题2:“除了dom解析器之外,是否可以执行此操作?”
答案2:DOM不是XML的当前最新技术。您应该研究XSLT,SAX和/或JAXB。