I have a tricky situation,
So please any help will be appreciated.
I have 2 XML docs :
I need to add both of them as a single document so that the output XML looks like
How do I use the Class DOMSource in Java? Is this possible please?
So please any help will be appreciated.
I have 2 XML docs :
Code:
Document 1 ---------- <Interest> <Status>1</Status> </Interest> Document 2 ---------- <Under value="ABC> <comm:Desc>Daimler</comm:Desc> </Under>
I need to add both of them as a single document so that the output XML looks like
Code:
<Interest> <Status>1</Status> <Under value="ABC> <comm:Desc>Daimler</comm:Desc> </Under> </Interest>
Comment