Here you can find the source of getChild(Node node, String tag)
public static Node getChild(Node node, String tag)
//package com.java2s; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { public static Node getChild(Node node, String tag) { if (node == null) { return null; }//from w w w .j av a 2 s.c o m 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; } }