List of utility methods to do XML Child Element Text
ArrayList | getChildTextNodeValues(Node theNode) get Child Text Node Values ArrayList arrayList = new ArrayList(); if (theNode.getNodeType() != Node.TEXT_NODE) { Element theNodeElement = (Element) theNode; NodeList theNodeList = theNodeElement.getChildNodes(); for (int i = 0; i < theNodeList.getLength(); i++) { Node node = getTextNode(theNodeList.item(0)); if (node != null) { String s = node.getNodeValue(); ... |