XML文档写 : 字符文件写 « 可扩展标记语言 « 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 » 可扩展标记语言 » 字符文件写屏幕截图 
XML文档写
 
/*
 * 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.PrintWriter;

import org.w3c.dom.CDATASection;
import org.w3c.dom.Comment;
import org.w3c.dom.Document;
import org.w3c.dom.DocumentType;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.ProcessingInstruction;
import org.w3c.dom.Text;

/**
 * Output a DOM Level 1 Document object to a java.io.PrintWriter as a simple XML
 * document. This class does not handle every type of DOM node, and it doesn't
 * deal with all the details of XML like DTDs, character encodings and preserved
 * and ignored whitespace. However, it does output basic well-formed XML that
 * can be parsed by a non-validating parser.
 */
public class XMLDocumentWriter {
  PrintWriter out; // the stream to send output to

  /** Initialize the output stream */
  public XMLDocumentWriter(PrintWriter out) {
    this.out = out;
  }

  /** Close the output stream. */
  public void close() {
    out.close();
  }

  /** Output a DOM Node (such as a Document) to the output stream */
  public void write(Node node) {
    write(node, "");
  }

  /**
   * Output the specified DOM Node object, printing it using the specified
   * indentation string
   */
  public void write(Node node, String indent) {
    // The output depends on the type of the node
    switch (node.getNodeType()) {
    case Node.DOCUMENT_NODE: // If its a Document node
      Document doc = (Documentnode;
      out.println(indent + "<?xml version='1.0'?>")// Output header
      Node child = doc.getFirstChild()// Get the first node
      while (child != null) { // Loop 'till no more nodes
        write(child, indent)// Output node
        child = child.getNextSibling()// Get next node
      }
      break;
    }
    case Node.DOCUMENT_TYPE_NODE: // It is a <!DOCTYPE> tag
      DocumentType doctype = (DocumentTypenode;
      // Note that the DOM Level 1 does not give us information about
      // the the public or system ids of the doctype, so we can't output
      // a complete <!DOCTYPE> tag here. We can do better with Level 2.
      out.println("<!DOCTYPE " + doctype.getName() ">");
      break;
    }
    case Node.ELEMENT_NODE: // Most nodes are Elements
      Element elt = (Elementnode;
      out.print(indent + "<" + elt.getTagName())// Begin start tag
      NamedNodeMap attrs = elt.getAttributes()// Get attributes
      for (int i = 0; i < attrs.getLength(); i++) { // Loop through them
        Node a = attrs.item(i);
        out.print(" " + a.getNodeName() "='" // Print attr. name
            fixup(a.getNodeValue()) "'")// Print attr. value
      }
      out.println(">")// Finish start tag

      String newindent = indent + "    "// Increase indent
      Node child = elt.getFirstChild()// Get child
      while (child != null) { // Loop
        write(child, newindent)// Output child
        child = child.getNextSibling()// Get next child
      }

      out.println(indent + "</" // Output end tag
          elt.getTagName() ">");
      break;
    }
    case Node.TEXT_NODE: // Plain text node
      Text textNode = (Textnode;
      String text = textNode.getData().trim()// Strip off space
      if ((text != null&& text.length() 0// If non-empty
        out.println(indent + fixup(text))// print text
      break;
    }
    case Node.PROCESSING_INSTRUCTION_NODE: // Handle PI nodes
      ProcessingInstruction pi = (ProcessingInstructionnode;
      out.println(indent + "<?" + pi.getTarget() " " + pi.getData()
          "?>");
      break;
    }
    case Node.ENTITY_REFERENCE_NODE: // Handle entities
      out.println(indent + "&" + node.getNodeName() ";");
      break;
    }
    case Node.CDATA_SECTION_NODE: // Output CDATA sections
      CDATASection cdata = (CDATASectionnode;
      // Careful! Don't put a CDATA section in the program itself!
      out.println(indent + "<" "![CDATA[" + cdata.getData() "]]"
          ">");
      break;
    }
    case Node.COMMENT_NODE: // Comments
      Comment c = (Commentnode;
      out.println(indent + "<!--" + c.getData() "-->");
      break;
    }
    default// Hopefully, this won't happen too much!
      System.err.println("Ignoring node: " + node.getClass().getName());
      break;
    }
  }

  // This method replaces reserved characters with entities.
  String fixup(String s) {
    StringBuffer sb = new StringBuffer();
    int len = s.length();
    for (int i = 0; i < len; i++) {
      char c = s.charAt(i);
      switch (c) {
      default:
        sb.append(c);
        break;
      case '<':
        sb.append("&lt;");
        break;
      case '>':
        sb.append("&gt;");
        break;
      case '&':
        sb.append("&amp;");
        break;
      case '"':
        sb.append("&quot;");
        break;
      case '\'':
        sb.append("&apos;");
        break;
      }
    }
    return sb.toString();
  }
}

           
         
  
Related examples in the same category
1. 输出一个DOM文档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.