Here you can find the source of findAllUrisRecursive(Node node, List
private static void findAllUrisRecursive(Node node, List<Node> nodes)
//package com.java2s; /**// w ww .j a v a 2 s. c om * Copyright 2005-2015 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version * 2.0 (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing * permissions and limitations under the License. */ import java.util.List; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { private static void findAllUrisRecursive(Node node, List<Node> nodes) { // okay its a route so grab all uri attributes we can find String url = getSafeAttribute(node, "uri"); if (url != null) { nodes.add(node); } NodeList children = node.getChildNodes(); if (children != null) { for (int i = 0; i < children.getLength(); i++) { Node child = children.item(i); if (child.getNodeType() == Node.ELEMENT_NODE) { findAllUrisRecursive(child, nodes); } } } } public static String getSafeAttribute(Node node, String key) { if (node != null) { Node attr = node.getAttributes().getNamedItem(key); if (attr != null) { return attr.getNodeValue(); } } return null; } }