I have next simple part of code:

String test = "<?xml version="1.0" encoding="UTF-8"?><TT_NET_Result><GUID>9145b1d3-4aa3-4797-b65f-9f5e00be1a30</GUID></TT_NET_Result>"

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();        
Document doc = dbf.newDocumentBuilder().parse(new InputSource(new StringReader(test)));                    
NodeList nl = doc.getDocumentElement().getElementsByTagName("TT_NET_Result");

The problem is that I don't get any result - nodelist variable "nl" is empty. What could be wrong?

link|improve this question
feedback

1 Answer

You're asking for elements under the document element, but TT_NET_Result is the document element. If you just call

NodeList nl = doc.getElementsByTagName("TT_NET_Result");

then I suspect you'll get the result you want.

link|improve this answer
just nailed the problem! – kaps Sep 14 '11 at 9:39
Thank you. I totaly overlooked document element. – torosg Sep 14 '11 at 11:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.