Java: Obtenir la valeur de l’attribut nommé d’un élément donné*

Author:

Java: Obtenir la valeur de l'attribut nommé d'un élément donné*
Download

/***** Code de MesExemples.com *******/
  import org.w3c.dom.Attr;import org.w3c.dom.Element;public class Utils {  /**   * <p>Retutns the value of the named attribute of the given   * element. If there is no such attribute, returns null.</p>   *   * @param element element   * @param name name   * @return value   */  public static String getAttributeValue(Element element, String name)  {      Attr attribute = element.getAttributeNode(name);      if(attribute == null) {          return null;      }      else {          return attribute.getValue();      }  }}         

Code testé avec le fichier XML Suivant

<?xml version="1.0" encoding="windows-1252"?>
<!-- Edited by MesEXemple.com -->
<note>
	<to>Sakoba</to>
	<from>Adams</from>
	<heading>Rappel</heading>
	<body>Ne m'oubliez pas ce week-end!</body>
</note>

Cet article Java: Obtenir la valeur de l’attribut nommé d’un élément donné* est apparu en premier sur .