Java XML Node Find findNodeValue(Node aNode, String aName)

Here you can find the source of findNodeValue(Node aNode, String aName)

Description

------------------------------------------------------------ Gets the value of the named node

License

Open Source License

Parameter

Parameter Description
aNode Parent to search (should be the document root)
aName Name of node to find

Return

Returns the node's value as a string --------------------------------------------------------------

Declaration

public static String findNodeValue(Node aNode, String aName) 

Method Source Code

//package com.java2s;
/*/*from   ww  w  .jav a  2  s. co  m*/
 * Copyright (c) 2010 The Regents of the University of California.
 * All rights reserved.
 *
 * '$Author: welker $'
 * '$Date: 2010-05-05 22:21:26 -0700 (Wed, 05 May 2010) $' 
 * '$Revision: 24234 $'
 * 
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the above
 * copyright notice and the following two paragraphs appear in all copies
 * of this software.
 *
 * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
 * FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
 * THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
 * PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
 * CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
 * ENHANCEMENTS, OR MODIFICATIONS.
 *
 */

import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class Main {
    /**
     * ------------------------------------------------------------ Gets the
     * value of the named node
     * 
     * @param aNode
     *            Parent to search (should be the document root)
     * @param aName
     *            Name of node to find
     * @return Returns the node's value as a string
     *         --------------------------------------------------------------
     */
    public static String findNodeValue(Node aNode, String aName) {
        String value = null;
        Node node = findNode(aNode, aName);
        if (node != null) {
            value = getNodeValue(node);
        }
        return value;
    }

    /**
     * ------------------------------------------------------------ Finds the
     * first node of a given type
     * 
     * @param aNode
     *            Parent to search (should be the document root)
     * @param aName
     *            Name of node to find
     * @return Returns the node of that name or null
     *         --------------------------------------------------------------
     */
    public static Node findNode(Node aNode, String aName) {
        String name = aNode.getNodeName() != null ? aNode.getNodeName()
                .trim() : "";
        if (aName.equalsIgnoreCase(name)) {
            return aNode;
        }

        NodeList list = aNode.getChildNodes();
        for (int i = 0; i < list.getLength(); i++) {
            Node child = list.item(i);
            if (child != null) {
                Node node = findNode(child, aName);
                if (node != null) {
                    return node;
                }
            }
        }
        return null;
    }

    /**
     * ------------------------------------------------------------ Gets the
     * String value of a node. First checks it's value and if that is null then
     * it checks to see if it has a child node and gets the value of the first
     * child. Assumption: That the first child is a #text node, delibertly NOT
     * checking the first node's type
     * 
     * @param aNode
     *            Parent to search (should be the document root)
     * @return Returns the value of the node
     *         --------------------------------------------------------------
     */
    public static String getNodeValue(Node aNode) {
        String value = null;
        if (aNode.getNodeValue() != null) {
            value = aNode.getNodeValue() != null ? aNode.getNodeValue()
                    .trim() : null;
        } else {
            NodeList list = aNode.getChildNodes();
            if (list.getLength() == 1) {
                Node child = list.item(0);
                if (child != null) {
                    value = child.getNodeValue() != null ? child
                            .getNodeValue().trim() : null;
                }
            }
        }
        return value;
    }
}

Related

  1. findNodeIndex(Node node)
  2. findNodeIndex(Node node)
  3. findNodeLong(Node node)
  4. findNodesByTagName(Document document, String tagName)
  5. findNodesNamed(Node node, String lookForName, Collection ret)
  6. findNodeWithAttrValue(Document doc, String elementName, String attrName, String attrValue)