gpt4 book ai didi

java - 将字符串 XML 片段转换为 Java 中的文档节点

转载 作者:IT老高 更新时间:2023-10-28 13:50:53 27 4
gpt4 key购买 nike

在 Java 中,如何将表示 XML 片段的字符串转换为插入 XML 文档?

例如

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

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

最佳答案

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

关于java - 将字符串 XML 片段转换为 Java 中的文档节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/729621/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com