以编程方式向 xml 添加注释

发布于 2024-11-27 01:43:41 字数 316 浏览 0 评论 0原文

有没有办法以编程方式注释 XML 中的特定子项? 我的要求是我需要从 xml 中找出属性值。如果该值存在,我需要注释该属性所属的特定子项本身。 例如:

<Company>
 <employee name="John">
   <dept id="Purchase"></dept>
 </employee>
</company>

所以在这里,如果我搜索部门 ID“购买”(如果找到),那么员工约翰应该能够添加评论。

有什么想法吗?我正在使用 jdom 解析器。

Is there any way to programmatically comment a particular child in XML?
My requirement is I need to find out the attribute value from the xml.If that values exists I need to comment that particular child itself which the attribute belongs.
eg:

<Company>
 <employee name="John">
   <dept id="Purchase"></dept>
 </employee>
</company>

so here if I search for dept id "purchase" if it is found then the employee John should be able to add comment.

any idea? I am using jdom parser.

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

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

发布评论

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

评论(2

儭儭莪哋寶赑 2024-12-04 01:43:42

这是将为文档本身添加注释的 JavaCode:

Element element = doc.getDocumentElement();
Comment comment = doc.createComment("This is a comment");
element.getParentNode().insertBefore(comment, element);

This is the JavaCode that will add a comment to the document itself:

Element element = doc.getDocumentElement();
Comment comment = doc.createComment("This is a comment");
element.getParentNode().insertBefore(comment, element);
孤独陪着我 2024-12-04 01:43:42

您可以使用 Document.createComment() 并将它们插入到你的 DOM 树中,例如使用 Node.insertBefore(Node, Node)

You can create new comment nodes using Document.createComment() and insert them into your DOM tree using e.g. Node.insertBefore(Node, Node).

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