I am new developer in java application. I would like to modify an XML file node value. I have used an xml file for modify as follows
First you have to realize that node.setValue() is modifying the representation that is stored in memory. Knowing that, then you just need to figure out how to write that output to disk. See this, for an example.
node.setValue()
node.Text = "Enter your value here"; //This will work