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

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

Description

get Attribute

License

Apache License

Parameter

Parameter Description
node a parameter
attr a parameter

Return

The value of the given attribute, or null if not present.

Declaration

public static String getAttribute(Node node, String attr) 

Method Source Code

//package com.java2s;
/*//from   w w w . j  a v a2  s. c om
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF 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 org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;

public class Main {
    /**
     * Extracts an attribute from a node.
     *
     * @param node
     * @param attr
     * @param def
     * @return The value of the attribute, or def
     */
    public static String getAttribute(Node node, String attr, String def) {
        NamedNodeMap attrs = node.getAttributes();
        Node val = attrs.getNamedItem(attr);
        if (val != null) {
            return val.getNodeValue();
        }
        return def;
    }

    /**
     * @param node
     * @param attr
     * @return The value of the given attribute, or null if not present.
     */
    public static String getAttribute(Node node, String attr) {
        return getAttribute(node, attr, null);
    }
}

Related

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