I need to write a logic in java that
- Takes 2 versions of xmls like v1.xml & V2.xml
- Outputs the differences between the 2 xmls
- Displays them on a webpage just like any diff tool, like winmerge would display.
- Removed lines - Highlighted in a unique color
- Added lines - Highlighted in a unique color
- Changed lines - Highlighted in a unique color
What is the best way to achieve this.
Thanks !