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

link|improve this question

2  
See this question: stackoverflow.com/questions/141993/… – maclema Oct 11 '11 at 11:51
feedback

1 Answer

up vote 2 down vote accepted

XMLUnit is designed to do this kind of comparison, specifically for unit testing. But it can surely be used for other uses as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.