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

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

content management system - How to allow only English submissions on Pligg CMS -

c++ - Is it possible to apply breadth-first search algorithm of boost library to matrix? -