如何比较java中的文档对象与XERCES?
我正在尝试比较两个 Document 对象并尝试根据结果进行操作。 例如,我将有一个 Document 对象,例如
<head>
<value> </value>
</head>
,我将与另一个文档对象进行比较,例如,
<head>
</head>
如果两个 Document 对象的格式不同,我想做一些操作。 你能帮我解决这个情况吗?
谢谢大家
I am trying to compare two Document objects and try to make operation according to result.
For example I will have a Document object like,
<head>
<value> </value>
</head>
and I will compare with another document object like,
<head>
</head>
If the two Document objects will not be in the same format, I want to do some operation.
Can you please help me about this situation ?
Thank you all
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XMLUnit 旨在进行这种比较,特别是用于单元测试。但它肯定也可以用于其他用途。
XMLUnit is designed to do this kind of comparison, specifically for unit testing. But it can surely be used for other uses as well.