Java examples for XML:XML Node Child
get XML Direct Child Nodes
/***************************************************************************** * Copyright (c) 2007 Jet Propulsion Laboratory, * California Institute of Technology. All rights reserved *****************************************************************************/ //package com.java2s; import java.util.LinkedList; import java.util.List; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { public static List<Node> getDirectChildNodes(Node node, String name) { LinkedList<Node> nodes = new LinkedList<Node>(); NodeList childList = node.getChildNodes(); for (int childIndex = 0; childIndex < childList.getLength(); childIndex++) { Node child = childList.item(childIndex); if (child.getNodeName().equals(name)) { nodes.add(child);//from www. j a va 2 s. c o m } } return nodes; } }