将 xml 从 String 添加到 DOMElement

发布于 2024-11-26 03:50:23 字数 294 浏览 0 评论 0原文

我有一个包含 xml 内容的字符串,例如:

String str = "<history><message from="Alice" to="Bob" /></history>";

我想将此 xml 内容添加到某个元素 (org.dom4j.DOMElement)。 怎么做呢?


我已经尝试过这个:

myElement.addText(str);

但它只给了我转义的文本内容。

I have a string with xml content, for example:

String str = "<history><message from="Alice" to="Bob" /></history>";

and I want to add this xml content to some element (org.dom4j.DOMElement).
How to do it?

I've tried this:

myElement.addText(str);

But it gives me just escaped text content.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪是无色的血 2024-12-03 03:50:23

您需要使用 Dom4j 将 XML 片段解析为单独的 Document 对象,然后将该 Document 对象的根元素附加到目标 Document 的适当位置。

You need to use Dom4j to parse the XML fragment into a separate Document object, and then append the root element of that Document object to the appropriate place of your target Document.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文