I wrote some android application that get xml from some service ( using http ).
I define object type org.w3c.dom.Document that hold this xml.
The xml that i get from the server contain Elements and value of those Elements.
I can’t get the value of those Elements.
How can i do it ?
Check out the documentation for
org.w3c.dom.Document.You will probably be doing something like getting a
NodeListwithgetElementsByTagNamethen running through it and doing whatever with eachNode.