Java: Easiest way to compare two xmls -
Java: Easiest way to compare two xmls -
i have 2 xmls:
first.xml <text>this text</text> <output>this output</output> second.xml <text>this not text</text> <output>this output</output>
i want compare these 2 xmls , output should this
<text>this <inserted>not</inserted> text</text> <output>this output</output>
means, want add together new tag suppose <inserted>
newly added text. how compare these xmls , create new 1 ?
thanks ur time :)
take @ diffxml.
java xml
Comments
Post a Comment