Here you can find the source of hasAttribute(Element ele, String attrName)
Parameter | Description |
---|---|
ele | a parameter |
attrName | a parameter |
public static boolean hasAttribute(Element ele, String attrName)
//package com.java2s; /******************************************************************************* * Copyright (c) 2006 Sybase, Inc. and others. * * 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://from w ww. jav a 2 s.c o m * Sybase, Inc. - initial API and implementation *******************************************************************************/ import org.w3c.dom.Element; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; public class Main { /** * judge whether element has an attribute named attrName * * @param ele * @param attrName * @return true if element has attribute called attrName ignoring * case in the comparison. */ public static boolean hasAttribute(Element ele, String attrName) { NamedNodeMap map = ele.getAttributes(); for (int i = 0; i < map.getLength(); i++) { Node attr = map.item(i); if (attr.getNodeName().equalsIgnoreCase(attrName)) { return true; } } return false; } }