[
Lists Home |
Date Index |
Thread Index
]
I think you should get the "transport" nodes in a node collection, then get
the name attribute of each transport node:
NodeList nodeList=xmlDocument.selectNodes("/applet/transport", nsr);
XMLElement node=(XMLElement)nodeList.item(0);
String trans_val1 = node.getAttribute("name");
|