以编程方式向 xml 添加注释
有没有办法以编程方式注释 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是将为文档本身添加注释的 JavaCode:
This is the JavaCode that will add a comment to the document itself:
您可以使用 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).