Java XML: Obtenir le premier enfant d’un type spécifique

Author:

Java XML: Obtenir le premier enfant d'un type spécifique
Download

/***** Code de MesExemples.com *******/
  import org.w3c.dom.Node;public class Utils {  /**   * Get the first child of the specified type.   *    * @param parent   * @param type   * @return   */  public static Node getChild(Node parent, int type) {      Node n = parent.getFirstChild();      while (!= null && type != n.getNodeType()) {          n = n.getNextSibling();      }      if (== null) {          return null;      }      return n;  }}         

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 XML: Obtenir le premier enfant d’un type spécifique est apparu en premier sur .