内容句柄输出排序名单 : 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解析屏幕截图 
内容句柄输出排序名单
  
import java.io.PrintWriter;
import java.util.Vector;

import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.Locator;

public class MyTextHandler implements ContentHandler {
  private boolean insideNameElement = false;

  private boolean insidePhoneElement = false;

  private boolean insideEmailElement = false;

  private Person person;

  private Vector personVec;

  private PrintWriter out;

  public MyTextHandler(PrintWriter out) {
    this.out = out;
    personVec = new Vector();
  }

  public void setDocumentLocator(Locator locator) {
  }

  public void startDocument() {
    putCols(" name"" phone"" email");
    putCols(" ----"" -----"" -----");
  }

  public void endDocument() {
    int k1 = 1;
    while (k1 < personVec.size()) {
      int k0 = k1 - 1;
      Person p0 = (PersonpersonVec.elementAt(k0);
      Person p1 = (PersonpersonVec.elementAt(k1);
      if (p0.getName().compareTo(p1.getName()) 0) {
        personVec.setElementAt(p0, k1);
        personVec.setElementAt(p1, k0);
        if (k1 > 1)
          k1--;
      else {
        k1++;
      }
    }

    for (int i = 0; i < personVec.size(); i++) {
      Person p = (PersonpersonVec.elementAt(i);
      putCols(p.getName(), p.getPhone(), p.getEmail());
    }
  }

  public void startPrefixMapping(String prefix, String uri) {
  }

  public void endPrefixMapping(String prefix) {
  }

  public void startElement(String namespaceURI, String localName,
      String qName, Attributes atts) {
    if (localName.equals("person")) {
      person = new Person();
    else if (localName.equals("name")) {
      insideNameElement = true;
    else if (localName.equals("phone")) {
      insidePhoneElement = true;
    else if (localName.equals("email")) {
      insideEmailElement = true;
    }
  }

  public void endElement(String namespaceURI, String localName, String qName) {
    if (localName.equals("person")) {
      if (person != null)
        personVec.addElement(person);
    else if (localName.equals("name")) {
      insideNameElement = false;
    else if (localName.equals("phone")) {
      insidePhoneElement = false;
    else if (localName.equals("email")) {
      insideEmailElement = false;
    }
  }

  public void characters(char[] ch, int start, int length) {
    String str = "";
    for (int i = start; i < start + length; i++)
      str += ch[i];
    if (insideNameElement)
      person.setName(str);
    else if (insidePhoneElement)
      person.setPhone(str);
    else if (insideEmailElement)
      person.setEmail(str);
  }

  public void ignorableWhitespace(char[] ch, int start, int length) {
  }

  public void processingInstruction(String target, String data) {
  }

  public void skippedEntity(String name) {
  }

  private void putCols(String col1, String col2, String col3) {
    String lout = col1;
    while (lout.length() 25)
      lout += " ";
    lout += col2;
    while (lout.length() 50)
      lout += " ";
    lout += col3;
    out.println(lout);
  }
}

// A Class for Holding Person Information

class Person {
  private String name = null;

  private String phone = null;

  private String email = null;

  public void setName(String value) {
    name = value;
  }

  public void setPhone(String value) {
    phone = value;
  }

  public void setEmail(String value) {
    email = value;
  }

  public String getName() {
    if (name == null)
      return ("none");
    return (name);
  }

  public String getPhone() {
    if (phone == null)
      return ("none");
    return (phone);
  }

  public String getEmail() {
    if (email == null)
      return ("none");
    return (email);
  }
}
//Example XML document
/*
 An XML Document Containing a Simple Contact List
Start example

<?xml version="1.0" standalone="yes"?>

<folks>
    <person>
        <phone>306 555-9999</phone>
        <email>joe@webserver.net</email>
        <name>Wang, Joe</name>
    </person>
    <person>
        <phone>704 555-0000</phone>
        <name>Pet, Rob</name>
        <email>rob@server.com</email>
    </person>
</folks>

*/


           
         
    
  
Related examples in the same category
1. 解析XML文件与SAX
2. SAX演示
3. 复制XML文件
4. SAX解析器输入显示SAX解析器输入显示
5. SAX检查
6. 内容句柄输出为HTML
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.