Reading XML data between tags

lulabelle

New Member
I have a XML for which i am writing a servlet to pick up contents from the XML. One such tag is \[code\]<itunes:author>Jonathan Kendrick</itunes:author>\[/code\]
I need to get author value for this. because of :I tried using namespace and using escape sequence for : but it did not worked for me.For rest of other XML elements i am simply using \[code\]String link=node.getChildText("link").toString();\[/code\]I am using Jdom parser
 
Back
Top