I have xyz.xml
file in a path.
<xml>
<emp>
<name>rahul</name>
<emp>
</xml>
I have a GUI from which I update the name rahul->rahul tripathi and click on save button and update the XML file.
Now updated XML file will be like --
<xml>
<emp>
<name>rahul tripathi</name>
<emp>
</xml>
Now from GUI, I want to show the difference between previous and updated data which is stored in XML.
I found out a link, but regarding this there is no library.