SAX演示 : SAX解析 « 可扩展标记语言 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 可扩展标记语言 » SAX解析屏幕截图 
SAX演示
  
/*
 * Copyright (c) 2000 David Flanagan.  All rights reserved.
 * This code is from the book Java Examples in a Nutshell, 2nd Edition.
 * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied.
 * You may study, use, and modify it for any non-commercial purpose.
 * You may distribute it non-commercially as long as you retain this notice.
 * For a commercial use license, or to purchase the book (recommended),
 * visit http://www.davidflanagan.com/javaexamples2.
 */

import java.io.File;
import java.io.FileReader;
import java.io.IOException;

import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.AttributeList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;

/**
 
 * This class implements the HandlerBase helper class, which means that it
 * defines all the "callback" methods that the SAX parser will invoke to notify
 * the application. In this example we override the methods that we require.
 
 * This example uses full package names in places to help keep the JAXP and SAX
 * APIs distinct.
 */
public class SAXDemo extends org.xml.sax.HandlerBase {
  /** The main method sets things up for parsing */
  public static void main(String[] argsthrows IOException, SAXException,
      ParserConfigurationException {
    // Create a JAXP "parser factory" for creating SAX parsers
    javax.xml.parsers.SAXParserFactory spf = SAXParserFactory.newInstance();

    // Configure the parser factory for the type of parsers we require
    spf.setValidating(false)// No validation required

    // Now use the parser factory to create a SAXParser object
    // Note that SAXParser is a JAXP class, not a SAX class
    javax.xml.parsers.SAXParser sp = spf.newSAXParser();

    // Create a SAX input source for the file argument
    org.xml.sax.InputSource input = new InputSource(new FileReader(args[0]));

    // Give the InputSource an absolute URL for the file, so that
    // it can resolve relative URLs in a <!DOCTYPE> declaration, e.g.
    input.setSystemId("file://" new File(args[0]).getAbsolutePath());

    // Create an instance of this class; it defines all the handler methods
    SAXDemo handler = new SAXDemo();

    // Finally, tell the parser to parse the input and notify the handler
    sp.parse(input, handler);

    // Instead of using the SAXParser.parse() method, which is part of the
    // JAXP API, we could also use the SAX1 API directly. Note the
    // difference between the JAXP class javax.xml.parsers.SAXParser and
    // the SAX1 class org.xml.sax.Parser
    //
    // org.xml.sax.Parser parser = sp.getParser(); // Get the SAX parser
    // parser.setDocumentHandler(handler); // Set main handler
    // parser.setErrorHandler(handler); // Set error handler
    // parser.parse(input); // Parse!
  }

  StringBuffer accumulator = new StringBuffer()// Accumulate parsed text

  String servletName; // The name of the servlet

  String servletClass; // The class name of the servlet

  String servletId; // Value of id attribute of <servlet> tag

  // When the parser encounters plain text (not XML elements), it calls
  // this method, which accumulates them in a string buffer
  public void characters(char[] buffer, int start, int length) {
    accumulator.append(buffer, start, length);
  }

  // Every time the parser encounters the beginning of a new element, it
  // calls this method, which resets the string buffer
  public void startElement(String name, AttributeList attributes) {
    accumulator.setLength(0)// Ready to accumulate new text
    // If its a servlet tag, look for id attribute
    if (name.equals("servlet"))
      servletId = attributes.getValue("id");
  }

  // When the parser encounters the end of an element, it calls this method
  public void endElement(String name) {
    if (name.equals("servlet-name")) {
      // After </servlet-name>, we know the servlet name saved up
      servletName = accumulator.toString().trim();
    else if (name.equals("servlet-class")) {
      // After </servlet-class>, we've got the class name accumulated
      servletClass = accumulator.toString().trim();
    else if (name.equals("servlet")) {
      // Assuming the document is valid, then when we parse </servlet>,
      // we know we've got a servlet name and class name to print out
      System.out.println("Servlet " + servletName
          ((servletId != null" (id=" + servletId + ")" "")
          ": " + servletClass);
    }
  }

  /** This method is called when warnings occur */
  public void warning(SAXParseException exception) {
    System.err.println("WARNING: line " + exception.getLineNumber() ": "
        + exception.getMessage());
  }

  /** This method is called when errors occur */
  public void error(SAXParseException exception) {
    System.err.println("ERROR: line " + exception.getLineNumber() ": "
        + exception.getMessage());
  }

  /** This method is called when non-recoverable errors occur. */
  public void fatalError(SAXParseException exceptionthrows SAXException {
    System.err.println("FATAL: line " + exception.getLineNumber() ": "
        + exception.getMessage());
    throw (exception);
  }
}

// Sample XML file

/*
 * <?xml version="1.0" encoding="ISO-8859-1"?>
 
 * <web> <s id="hello_servlet_id"> <name>hello </name> <class>Hello </class>
 * </s>
 
 * </web>
 *  
 */

           
         
    
  
Related examples in the same category
1. 解析XML文件与SAX
2. 复制XML文件
3. SAX解析器输入显示SAX解析器输入显示
4. SAX检查
5. 内容句柄输出为HTML
6. 内容句柄输出排序名单
7. 提取元素名称和子元素
8. SAX树验证
9. SAX树浏览器SAX树浏览器
10. 访问字符数据( CDATA )XML元素
11. 访问SAX分析器
12. 配置SAX解析器工厂,生产候补解析器
13. 从XML元素提取属性值
14. SAX处理期间发生异常
15. 使用XML查询分析器显示当前位置
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.