get Properties From XML via Node - Java XML

Java examples for XML:DOM Node Value

Description

get Properties From XML via Node

Demo Code


//package com.java2s;
import java.util.ArrayList;
import java.util.List;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class Main {
    public static List<String> getPropertiesFromXML(Node propNode) {
        ArrayList<String> properties;
        properties = new ArrayList<String>();
        NodeList childList = propNode.getChildNodes();

        for (int i = 0; i < childList.getLength(); i++) {
            Node currentNode = childList.item(i);
            if (currentNode.getNodeType() == Node.ELEMENT_NODE) {
                String nodeName = currentNode.getLocalName();
                String namespace = currentNode.getNamespaceURI();
                // href is a live property which is handled differently
                properties.add(namespace + ":" + nodeName);
            }/*from   www .java 2 s . com*/
        }
        return properties;
    }
}

Related Tutorials