Java examples for XML:XML Element Value
get Float Property from Parent XML Element
//package com.java2s; import org.w3c.dom.Element; import org.w3c.dom.NodeList; public class Main { public static final String PROPERTY_NODE = "property"; public static final String NAME_ATTR = "name"; public static final String FLOAT_ATTR = "doublevalue"; public static double getFloatProperty(Element properties, String name) { return new Float(getPropertyNode(properties, name).getAttributes() .getNamedItem(FLOAT_ATTR).getNodeValue()); }/* w w w .j ava2 s . co m*/ public static Element getPropertyNode(Element properties, String name) { NodeList nodeList = properties.getElementsByTagName(PROPERTY_NODE); for (int i = 0; i < nodeList.getLength(); i++) { Element element = (Element) nodeList.item(i); if (name.equals(element.getAttributes().getNamedItem(NAME_ATTR) .getNodeValue())) { return element; } } return null; } }