How To Get Value Of Element Value In Org.w3c.dom.document ?
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 c
Solution 1:
Check out the documentation for org.w3c.dom.Document
.
You will probably be doing something like getting a NodeList
with getElementsByTagName
then running through it and doing whatever with each Node
.
Post a Comment for "How To Get Value Of Element Value In Org.w3c.dom.document ?"