Skip to content
Advertisement

Update empty XML element using XPATH and DOM in Java

I have the following XML document stored as a String and want to update the SubID element that is empty using XPATH and DOM.

JavaScript

I’m using the following code to fetch the node first using xpath and update it using DOM. As the XML document use namespaces I’m using local-name() in the xpath.

JavaScript

After setting the value in the destination node I tried to convert it back to string and print it to verify but I see that the SubId field is collapsed and nothing has been added to it. Here’s the output I got (Posting only relevant part of XML output):

JavaScript

What am I doing wrong?

Advertisement

Answer

I fgured out using setNodeValue will not work if the element is empty, we can create a text node and then append it as a child node in the detination node.

JavaScript

Refer: Adding a Text Node to a DOM Document

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement