JSP and SAX : XML « JSP « 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 » JSP » XMLScreenshots 
JSP and SAX

<%@ page import="javax.xml.parsers.SAXParserFactory,
                 javax.xml.parsers.SAXParser,
                 com.java2s.MyHandler"%>

<html>
  <head><title>JSP and SAX</title></head>
  <body>
    <%
      SAXParserFactory factory   = SAXParserFactory.newInstance();
      SAXParser        parser    = factory.newSAXParser();
      MyHandler        myHandler = new MyHandler(out);

      parser.parse("http://localhost:8080/chapter10/people.xml",
                   myHandler);
    %>
  </body>
</html>


package com.java2s;

import java.io.IOException;
import javax.servlet.jsp.JspWriter;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

public class MyHandler extends DefaultHandler
{
  private int       stepCount, totalAge;
  private JspWriter out;
  private boolean   insideAgeElement;
  
  public MyHandler(JspWriter out)
  {
    this.out = out;
  }

  public void startDocument() throws SAXException
  {
    try 
    {
      out.write(++stepCount + ". Start of document<br>");      
    }
    catch (IOException e
    {
      throw new SAXException(e);
    }    
  // end of startDocument()

  public void endDocument() throws SAXException
  {
    try 
    {
      out.write(++stepCount + ". End of document<p>");
      out.write("The total of all ages in the XML document is <b><i>"
                + totalAge + "</i></b>");
    }
    catch (IOException e
    {
      throw new SAXException(e);
    }    
  // end of endDocument()

  public void startElement(String namespaceURI, String localName,
                           String qName, Attributes attrs)
      throws SAXException
  {
    if qName.equals("age")) 
    {
      insideAgeElement = true;
    }
    
    try 
    {
      out.write(++stepCount + ". Start of element: <b>" + qName + "</b>");

      int numberOfAttributes = attrs.getLength();

      if numberOfAttributes > 
      {
        out.write(". Attributes: <ul>");
      // end of if ()
      else 
        out.write("<br>");
      
      for int i=0; i<numberOfAttributes; i++
      {
        out.write("<li>" + attrs.getQName(i" = "
                  + attrs.getValue(i"</li>");
      // end of for ()
        
      if numberOfAttributes > 
      {
        out.write("</ul>");
      }
    }
    catch (IOException e
    {
      throw new SAXException(e);
    }    
  // end of startElement()

  public void endElement(String namespaceURI, String localName, String qName)
      throws SAXException
  {
    if qName.equals("age") ) 
    {
      insideAgeElement = false;
    }
    
    try 
    {
      out.write(++stepCount + ". End of element <b>" + qName + "</b><br>");      
    }
    catch (IOException e
    {
      throw new SAXException(e);
    // end of try-catch
    
  // end of endElement()

  public void characters(char[] chars, int start, int lengththrows SAXException
  {
    String content = new String(chars, start, length);

    if insideAgeElement 
    {
      int age  =  Integer.parseInt(content);
      totalAge += age;
    }
    
    try 
    {
      out.write(++stepCount + ". Character content = ");

      if length > 
        out.write("<b>" + content + "</b><br>");
    }
    catch (IOException e
    {
      throw new SAXException(e);
    // end of try-catch
    
  // end of characters()
// end of class MyHandler



           
       
Related examples in the same category
1. Using the Core XML tags
2. XML transformation
3. Performing XSL Transformations
4. JSP in pure XML generating conforming XHTML
5. XSLT In JSP
6. XSLT in JSP 2
7. JSP Parsing using the DOM
8. JSP Parsing using JDOM
9. JSP Parsing using the DOM and JSTL
10. JSP Displaying a Subset in XML
11. JSP XML and XSLT transform
12. JSP List of data in the XML document
13. Deal With XML In JSP
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.