在Java中将String XML片段转换为Document Node

时间:2009-04-08 11:45:19

标签: java xml string

在Java中,如何将表示XML片段的String转换为XML文档?

e.g。

String newNode =  "<node>value</node>"; // Convert this to XML

然后将此节点作为给定节点的子节点插入 org.w3c.dom.Document

8 个答案:

答案 0 :(得分:60)

Element node =  DocumentBuilderFactory
    .newInstance()
    .newDocumentBuilder()
    .parse(new ByteArrayInputStream("<node>value</node>".getBytes()))
    .getDocumentElement();

答案 1 :(得分:32)

您可以使用文档的 import (或 adopt )方法添加XML片段:

  /**
   * @param docBuilder
   *          the parser
   * @param parent
   *          node to add fragment to
   * @param fragment
   *          a well formed XML fragment
   */
  public static void appendXmlFragment(
      DocumentBuilder docBuilder, Node parent,
      String fragment) throws IOException, SAXException {
    Document doc = parent.getOwnerDocument();
    Node fragmentNode = docBuilder.parse(
        new InputSource(new StringReader(fragment)))
        .getDocumentElement();
    fragmentNode = doc.importNode(fragmentNode, true);
    parent.appendChild(fragmentNode);
  }

答案 2 :(得分:14)

对于它的价值,这是我使用dom4j库提出的解决方案。 (我确实检查过它是否有效。)

将XML片段读入org.dom4j.Document(注意:下面使用的所有XML类都来自org.dom4j;参见附录):

  String newNode = "<node>value</node>"; // Convert this to XML
  SAXReader reader = new SAXReader();
  Document newNodeDocument = reader.read(new StringReader(newNode));

然后获取插入新节点的Document,以及从中获取父元素(将)。 (你的org.w3c.dom.Document需要在这里转换成org.dom4j.Document。)为了测试目的,我创建了一个这样的:

    Document originalDoc = 
      new SAXReader().read(new StringReader("<root><given></given></root>"));
    Element givenNode = originalDoc.getRootElement().element("given");

添加新的子元素非常简单:

    givenNode.add(newNodeDocument.getRootElement());

完成。输出originalDoc现在产生:

<?xml version="1.0" encoding="utf-8"?>

<root>
    <given>
        <node>value</node>
    </given>
</root>

附录:由于您的问题涉及org.w3c.dom.Document,因此以下是如何在org.dom4j.Document之间进行转换。

// dom4j -> w3c
DOMWriter writer = new DOMWriter();
org.w3c.dom.Document w3cDoc = writer.write(dom4jDoc);

// w3c -> dom4j
DOMReader reader = new DOMReader();
Document dom4jDoc = reader.read(w3cDoc);

(如果你经常需要这两种Document,那么将它们放在整洁的实用工具方法中可能是有意义的,可能在一个名为XMLUtils的类或类似的东西中。)

即使没有任何第三方库,也许有更好的方法可以做到这一点。但是到目前为止提供的解决方案中,在我看来这是最简单的方法,即使你需要做dom4j&lt; - &gt; w3c转换。

更新(2011):在将dom4j依赖项添加到代码之前,请注意it is not an actively maintained project, and has some other problems too。改进版2.0已经开始使用多年了,但是只有alpha版本可用。您可能想要考虑替代方案,例如XOM;在上面链接的问题中阅读更多内容。

答案 3 :(得分:6)

这是使用与XOM library竞争的my dom4j answer的另一种解决方案。 (这是我的quest to find a good dom4j replacement的一部分,其中XOM被建议作为一种选择。)

首先将XML片段读入nu.xom.Document

String newNode = "<node>value</node>"; // Convert this to XML
Document newNodeDocument = new Builder().build(newNode, "");

然后,获取文档和添加片段的节点。同样,出于测试目的,我将从字符串创建Document:

Document originalDoc = new Builder().build("<root><given></given></root>", "");
Element givenNode = originalDoc.getRootElement().getFirstChildElement("given");

现在,添加子节点很简单,与dom4j类似(除了XOM不允许你添加已经属于newNodeDocument的原始根元素):

givenNode.appendChild(newNodeDocument.getRootElement().copy());

输出文档会产生正确的结果XML(使用XOM非常容易:只打印originalDoc.toXML()返回的字符串):

<?xml version="1.0"?>
<root><given><node>value</node></given></root>

(如果你想很好地格式化XML(使用缩进和换行符),请使用Serializer;感谢PeterŠtibraný指出这一点。)

所以,诚然,这与dom4j解决方案没有太大区别。 :)然而,XOM可能会更好一点,因为API更好地记录,并且由于其设计理念,有一种规范的方式来做每件事。

附录:同样,以下是org.w3c.dom.Documentnu.xom.Document之间的转换方式。使用XOM的DOMConverter类中的辅助方法:

// w3c -> xom
Document xomDoc = DOMConverter.convert(w3cDoc);

// xom -> w3c
org.w3c.dom.Document w3cDoc = DOMConverter.convert(xomDoc, domImplementation);  
// You can get a DOMImplementation instance e.g. from DOMImplementationRegistry

答案 4 :(得分:5)

/**
*
* Convert a string to a Document Object
*
* @param xml The xml to convert
* @return A document Object
* @throws IOException
* @throws SAXException
* @throws ParserConfigurationException
*/
public static Document string2Document(String xml) throws IOException, SAXException, ParserConfigurationException {

    if (xml == null)
    return null;

    return inputStream2Document(new ByteArrayInputStream(xml.getBytes()));

}


/**
* Convert an inputStream to a Document Object
* @param inputStream The inputstream to convert
* @return a Document Object
* @throws IOException
* @throws SAXException
* @throws ParserConfigurationException
*/
public static Document inputStream2Document(InputStream inputStream) throws IOException, SAXException, ParserConfigurationException {
    DocumentBuilderFactory newInstance = DocumentBuilderFactory.newInstance();
    newInstance.setNamespaceAware(true);
    Document parse = newInstance.newDocumentBuilder().parse(inputStream);
    return parse;
}

答案 5 :(得分:4)

如果你正在使用dom4j,你可以这样做:

Document document = DocumentHelper.parseText(text);

(dom4j现在在这里找到:https://github.com/dom4j/dom4j

答案 6 :(得分:1)

...如果你使用纯XOM,就像这样:

    String xml = "<fakeRoot>" + xml + "</fakeRoot>";
    Document doc = new Builder( false ).build( xml, null );
    Nodes children = doc.getRootElement().removeChildren();
    for( int ix = 0; ix < children.size(); ix++ ) {
        otherDocumentElement.appendChild( children.get( ix ) );
    }

XOM在内部使用fakeRoot做的几乎相同,所以它应该是安全的,如果不是很优雅的话。

答案 7 :(得分:1)

尝试jcabi-xml,使用一个班轮:

Node node = new XMLDocument("<node>value</node>").node();