public
String getXMLValue(Document
doc, String name) {
NodeList nlist=doc.getElementsByTagName(name);
String value = nlist.item(0).getFirstChild().getNodeValue();
return value;
}
i access using this method. However, i am not sure how to do it for multiple attributes.... can you give me some advise and show me example?
i want to get 69.0600235 and 24.1773101 from <LatLonBox north="69.0600235" south="55.1365705" east="24.1773101" west="10.5922629"/>