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

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

Description

get Attribute

License

Open Source License

Declaration

private static String getAttribute(Node node, String attributeName) 

Method Source Code

//package com.java2s;
/*-****************************************************************************** 
 * Copyright (c) 2014 Iwao AVE!.//from   ww  w . j  av  a2s.com
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Iwao AVE! - initial API and implementation and/or initial documentation
 *******************************************************************************/

import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;

public class Main {
    private static String getAttribute(Node node, String attributeName) {
        NamedNodeMap attributes = node.getAttributes();
        if (attributes != null) {
            Node typeAttrNode = attributes.getNamedItem(attributeName);
            if (typeAttrNode != null) {
                return typeAttrNode.getNodeValue();
            }
        }
        return null;
    }
}

Related

  1. getAttribute(Node node, String attribName)
  2. getAttribute(Node node, String attribute)
  3. getAttribute(Node node, String attributeName)
  4. getAttribute(Node node, String attributeName)
  5. getAttribute(Node node, String attributeName)
  6. getAttribute(Node node, String attributeName)
  7. getAttribute(Node node, String attributeName)
  8. getAttribute(Node node, String attributeName)
  9. getAttribute(Node node, String attributeName)