Macro to get the content of a unique child element. : DOM Element « XML « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » XML » DOM ElementScreenshots 
Macro to get the content of a unique child element.
  

import java.util.ArrayList;
import java.util.Iterator;

import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

/*
  * JBoss, Home of Professional Open Source
  * Copyright 2005, JBoss Inc., and individual contributors as indicated
  * by the @authors tag. See the copyright.txt in the distribution for a
  * full listing of individual contributors.
  *
  * This is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as
  * published by the Free Software Foundation; either version 2.1 of
  * the License, or (at your option) any later version.
  *
  * This software is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this software; if not, write to the Free
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */

public class Utils {
  /**
   * Macro to get the content of a unique child element.
   *
   @param element    The parent element.
   @param tagName    The name of the desired child.
   @return           The element content or null.
   */
  public static String getUniqueChildContent(Element element,
                                             String tagName)
     throws Exception
  {
     return getElementContent(getUniqueChild(element, tagName));
  }
  /**
   * Get the content of the given element.
   *
   @param element    The element to get the content for.
   @return           The content of the element or null.
   */
  public static String getElementContent(final Element element)
     throws Exception
  {
     return getElementContent(element, null);
  }

  /**
   * Get the content of the given element.
   *
   @param element       The element to get the content for.
   @param defaultStr    The default to return when there is no content.
   @return              The content of the element or the default.
   */
  public static String getElementContent(Element element, String defaultStr)
     throws Exception
  {
     if (element == null)
        return defaultStr;

     NodeList children = element.getChildNodes();
     String result = "";
     for (int i = 0; i < children.getLength(); i++)
     {
        if (children.item(i).getNodeType() == Node.TEXT_NODE || 
            children.item(i).getNodeType() == Node.CDATA_SECTION_NODE)
        {
           result += children.item(i).getNodeValue();
        }
        else ifchildren.item(i).getNodeType() == Node.COMMENT_NODE )
        {
           // Ignore comment nodes
        }
     }
     return result.trim();
  }
  /**
   * Gets the child of the specified element having the specified unique
   * name.  If there are more than one children elements with the same name
   * and exception is thrown.
   *
   @param element    The parent element
   @param tagName    The name of the desired child
   @return           The named child.
   *
   @throws Exception   Child was not found or was not unique.
   */
  public static Element getUniqueChild(Element element, String tagName)
     throws Exception
  {
     Iterator<Element> goodChildren = getChildrenByTagName(element, tagName);

     if (goodChildren != null && goodChildren.hasNext()) {
        Element child = goodChildren.next();
        if (goodChildren.hasNext()) {
           throw new Exception
              ("expected only one " + tagName + " tag");
        }
        return child;
     else {
        throw new Exception
           ("expected one " + tagName + " tag");
     }
  }
  /**
   * Returns an iterator over the children of the given element with
   * the given tag name.
   *
   @param element    The parent element
   @param tagName    The name of the desired child
   @return           An interator of children or null if element is null.
   */
  public static Iterator<Element> getChildrenByTagName(Element element,
                                              String tagName)
  {
     if (element == nullreturn null;
     // getElementsByTagName gives the corresponding elements in the whole 
     // descendance. We want only children

     NodeList children = element.getChildNodes();
     ArrayList<Element> goodChildren = new ArrayList<Element>();
     for (int i=0; i<children.getLength(); i++) {
        Node currentChild = children.item(i);
        if (currentChild.getNodeType() == Node.ELEMENT_NODE && 
            ((Element)currentChild).getTagName().equals(tagName)) {
           goodChildren.add((Element)currentChild);
        }
     }
     return goodChildren.iterator();
  }

}

   
    
  
Related examples in the same category
1. Add Text object to an Element.
2. Add a new element to the given parent
3. Add an entity to a specified Element.
4. Adds the child element with the given text
5. Clean text from Node
6. Compare two DOM Nodes
7. Compare two DOM Nodes from JBoss
8. Create New Element And Set
9. Create New Element And Set Attribute
10. Create a new element
11. Find All Elements By Tag Name
12. Find All Elements By Tag Name Name Space
13. Find Element And Set Or Create And Set
14. Find Element Or Container
15. Find Element Or Create And Attribute
16. Find Element Or Create And Set
17. Find Element Or Create And Set Attribute
18. Get Element Boolean Value
19. Get Element Date Value
20. Get Element Float Value
21. Get Element Int Value
22. Get Element Long Value
23. Get Element QName
24. Get Element String Value
25. Get Element Text
26. Get Elements by parent element
27. Get First Element
28. Get Next Element
29. Get child from an element by name
30. Get content from element
31. Get the content of an optional child element
32. Get the content of the given element.
33. Get the first child element
34. Get the first text node associated with this element
35. Get the next sibling element
36. Get the next sibling with the same name and type
37. Get the raw text content of a node or null if there is no text
38. Get the specified text node associated with this element
39. Get the trimed text content of a node or null if there is no text
40. Get trimmed text content of a node or null if there is no text
41. Gets the child of the specified element having the specified unique name
42. Has Attribute
43. Remove Attribute
44. DOM Util: get Element Text
45. DOM helper for root element
46. Return a list of named Elements with a specific attribute value.
47. Return a list of named Elements.
48. Return child elements with specified name.
49. Return the first element child with the specified qualified name.
50. Return the first named Element found. Null if none.
51. Returns a list of child elements with the given name.
52. Returns an array of text values of a child element.
53. Returns an iterator over the children of the given element with the given tag name.
54. Returns text value of a child element. Returns null if there is no child element found.
55. Returns the first child element with the given name.
56. Returns the first element that has the specified local name.
57. Returns the text of the element
58. Moves the content of the given element to the given element
59. Import Elements
60. Find Container Else Create One
61. Create New Container
62. Convert node element To String
63. Convert Element To Stream
64. Get the first element child.
65. Use the Document.getElementsByTagName() method to quickly and easily locate elements by name.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.