[
Lists Home |
Date Index |
Thread Index
]
Hi John:
I tried your suggestion:
NodeList nodeList=xmlDocument.selectNodes("/applet/transport", nsr);
XMLElement node=(XMLElement)nodeList.item(0);
String trans_val1 = node.getAttribute("name");
But I still get a NPE at node.getAttribute("name").
Can you suggest anything?
Thanks.
On Mon, 24 Jan 2005 22:00:06 -0000, John Rivett-Carnac
<jbrc@blueyonder.co.uk> wrote:
>
> 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");
>
>
|