Java tutorial
//package com.java2s; /* * XmlUtil.java * * (c) 2009 The Echo Nest * See "license.txt" for terms * * */ import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { public static List<Node> getDescendents(Node node, String nodeName) throws IOException { List<Node> childList = new ArrayList<Node>(); NodeList children = node.getChildNodes(); for (int i = 0; i < children.getLength(); i++) { Node child = children.item(i); if (child.getNodeName().equals(nodeName)) { childList.add(child); } } return childList; } }