Here you can find the source of getText(Node node, String tag)
public static String getText(Node node, String tag)
//package com.java2s; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { public static String getText(Node node, String tag) { Node n = getChild(node, tag); if (n != null) { Node text = n.getFirstChild(); if (text != null) { String s = text.getNodeValue(); return s.trim(); }/* www . j av a 2 s. co m*/ } return ""; } public static Node getChild(Node node, String tag) { if (node == null) { return null; } NodeList childNodes = node.getChildNodes(); if (childNodes == null) { return null; } for (int i = 0; i < childNodes.getLength(); i++) { Node item = childNodes.item(i); if (item != null) { String name = item.getNodeName(); if (tag.equalsIgnoreCase(name)) { return item; } } } return null; } }