Java XML Attribute Get getAttributeValue(Node node, String attributeName)

Here you can find the source of getAttributeValue(Node node, String attributeName)

Description

get Attribute Value

License

Open Source License

Declaration

static public String getAttributeValue(Node node, String attributeName) 

Method Source Code

//package com.java2s;
/*/* w  w w  .  j  ava 2 s.c om*/
 * ################################################################
 *
 * ProActive Parallel Suite(TM): The Java(TM) library for
 *    Parallel, Distributed, Multi-Core Computing for
 *    Enterprise Grids & Clouds
 *
 * Copyright (C) 1997-2012 INRIA/University of
 *                 Nice-Sophia Antipolis/ActiveEon
 * Contact: proactive@ow2.org or contact@activeeon.com
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Affero General Public License
 * as published by the Free Software Foundation; version 3 of
 * the License.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 * USA
 *
 * If needed, contact us to obtain a release under GPL Version 2 or 3
 * or a different license than the AGPL.
 *
 *  Initial developer(s):               The ProActive Team
 *                        http://proactive.inria.fr/team_members.htm
 *  Contributor(s):
 *
 * ################################################################
 * $$PROACTIVE_INITIAL_DEV$$
 */

import org.w3c.dom.Node;

public class Main {
    static public String getAttributeValue(Node node, String attributeName) {
        Node namedItem = node.getAttributes().getNamedItem(attributeName);
        return (namedItem != null) ? namedItem.getNodeValue() : null;
    }
}

Related

  1. getAttributeValue(Node node, String attribute)
  2. getAttributeValue(Node node, String attributeName)
  3. getAttributeValue(Node node, String attributeName)
  4. getAttributeValue(Node node, String attributeName)
  5. getAttributeValue(Node node, String attributeName)
  6. getAttributeValue(Node node, String attributeName)
  7. getAttributeValue(Node node, String attributeName, int defaultValue)
  8. getAttributeValue(Node node, String attrName)
  9. getAttributeValue(Node node, String attrName)