Java Doc for XMLWriter.java in  » J2EE » enhydra » sax » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
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 Source Code / Java Documentation » J2EE » enhydra » sax 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


sax.XMLFilterBase
   sax.XMLWriter

XMLWriter
public class XMLWriter extends XMLFilterBase (Code)
Filter to write an XML document from a SAX event stream. Code and comments adapted from XMLWriter-0.2, written by David Megginson and released into the public domain, without warranty.

This class can be used by itself or as part of a SAX event stream: it takes as input a series of SAX2 ContentHandler events and uses the information in those events to write an XML document. Since this class is a filter, it can also pass the events on down a filter chain for further processing (you can use the XMLWriter to take a snapshot of the current state at any point in a filter chain), and it can be used directly as a ContentHandler for a SAX2 XMLReader.

The client creates a document by invoking the methods for standard SAX2 events, always beginning with the XMLWriter.startDocument startDocument method and ending with the XMLWriter.endDocument endDocument method.

The following code will send a simple XML document to standard output:

 XMLWriter w = new XMLWriter();
 w.startDocument();
 w.dataElement("greeting", "Hello, world!");
 w.endDocument();
 

The resulting document will look like this:

 <?xml version="1.0"?>
 <greeting>Hello, world!</greeting>
 

Whitespace

According to the XML Recommendation, all whitespace in an XML document is potentially significant to an application, so this class never adds newlines or indentation. If you insert three elements in a row, as in

 w.dataElement("item", "1");
 w.dataElement("item", "2");
 w.dataElement("item", "3");
 

you will end up with

 <item>1</item><item>3</item><item>3</item>
 

You need to invoke one of the characters methods explicitly to add newlines or indentation. Alternatively, you can use samples.sax.DataFormatFilter DataFormatFilter add linebreaks and indentation (but does not support mixed content properly).

Namespace Support

The writer contains extensive support for XML Namespaces, so that a client application does not have to keep track of prefixes and supply xmlns attributes. By default, the XML writer will generate Namespace declarations in the form _NS1, _NS2, etc., wherever they are needed, as in the following example:

 w.startDocument();
 w.emptyElement("http://www.foo.com/ns/", "foo");
 w.endDocument();
 

The resulting document will look like this:

 <?xml version="1.0"?>
 <_NS1:foo xmlns:_NS1="http://www.foo.com/ns/"/>
 

In many cases, document authors will prefer to choose their own prefixes rather than using the (ugly) default names. The XML writer allows two methods for selecting prefixes:

  1. the qualified name
  2. the XMLWriter.setPrefix setPrefix method.

Whenever the XML writer finds a new Namespace URI, it checks to see if a qualified (prefixed) name is also available; if so it attempts to use the name's prefix (as long as the prefix is not already in use for another Namespace URI).

Before writing a document, the client can also pre-map a prefix to a Namespace URI with the setPrefix method:

 w.setPrefix("http://www.foo.com/ns/", "foo");
 w.startDocument();
 w.emptyElement("http://www.foo.com/ns/", "foo");
 w.endDocument();
 

The resulting document will look like this:

 <?xml version="1.0"?>
 <foo:foo xmlns:foo="http://www.foo.com/ns/"/>
 

The default Namespace simply uses an empty string as the prefix:

 w.setPrefix("http://www.foo.com/ns/", "");
 w.startDocument();
 w.emptyElement("http://www.foo.com/ns/", "foo");
 w.endDocument();
 

The resulting document will look like this:

 <?xml version="1.0"?>
 <foo xmlns="http://www.foo.com/ns/"/>
 

By default, the XML writer will not declare a Namespace until it is actually used. Sometimes, this approach will create a large number of Namespace declarations, as in the following example:

 <xml version="1.0"?>
 <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
 <rdf:Description about="http://www.foo.com/ids/books/12345">
 <dc:title xmlns:dc="http://www.purl.org/dc/">A Dark Night</dc:title>
 <dc:creator xmlns:dc="http://www.purl.org/dc/">Jane Smith</dc:title>
 <dc:date xmlns:dc="http://www.purl.org/dc/">2000-09-09</dc:title>
 </rdf:Description>
 </rdf:RDF>
 

The "rdf" prefix is declared only once, because the RDF Namespace is used by the root element and can be inherited by all of its descendants; the "dc" prefix, on the other hand, is declared three times, because no higher element uses the Namespace. To solve this problem, you can instruct the XML writer to predeclare Namespaces on the root element even if they are not used there:

 w.forceNSDecl("http://www.purl.org/dc/");
 

Now, the "dc" prefix will be declared on the root element even though it's not needed there, and can be inherited by its descendants:

 <xml version="1.0"?>
 <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:dc="http://www.purl.org/dc/">
 <rdf:Description about="http://www.foo.com/ids/books/12345">
 <dc:title>A Dark Night</dc:title>
 <dc:creator>Jane Smith</dc:title>
 <dc:date>2000-09-09</dc:title>
 </rdf:Description>
 </rdf:RDF>
 

This approach is also useful for declaring Namespace prefixes that be used by qualified names appearing in attribute values or character data.


See Also:   XMLFilterBase



Constructor Summary
public  XMLWriter()
     Create a new XML writer.
public  XMLWriter(Writer writer)
     Create a new XML writer.
public  XMLWriter(XMLReader xmlreader)
     Create a new XML writer.
public  XMLWriter(XMLReader xmlreader, Writer writer)
     Create a new XML writer.

Method Summary
public  voidcharacters(char ch, int start, int len)
     Write character data.
public  voidcomment(char[] ch, int start, int length)
    
public  voidendCDATA()
    
public  voidendDTD()
     Write end of DOCTYPE declaration.
public  voidendDocument()
     Write a newline at the end of the document.
public  voidendElement(String uri, String localName, String qName)
     Write an end tag. Pass the event on down the filter chain for further processing.
Parameters:
  uri - The Namespace URI, or the empty string if noneis available.
Parameters:
  localName - The element's local (unprefixed) name (required).
Parameters:
  qName - The element's qualified (prefixed) name, or theempty string is none is available.
public  voidendEntity(String name)
    
public  voidflush()
     Flush the output.

This method flushes the output stream.

public  voidforceNSDecl(String uri)
     Force a Namespace to be declared on the root element.
public  voidforceNSDecl(String uri, String prefix)
     Force a Namespace declaration with a preferred prefix.
public  StringgetPrefix(String uri)
     Get the current or preferred prefix for a Namespace URI.
Parameters:
  uri - The Namespace URI.
public  voidignorableWhitespace(char ch, int start, int length)
     Write ignorable whitespace.
public  voidprocessingInstruction(String target, String data)
     Write a processing instruction.
public  voidreset()
     Reset the writer.

This method is especially useful if the writer throws an exception before it is finished, and you want to reuse the writer for a new document.

public  voidsetOutput(Writer writer)
     Set a new output destination for the document.
Parameters:
  writer - The output destination, or null to usestandard output.
public  voidsetPrefix(String uri, String prefix)
     Specify a preferred prefix for a Namespace URI.
public  voidstartCDATA()
    
public  voidstartDTD(String name, String publicId, String systemId)
     Write start of DOCTYPE declaration.
public  voidstartDocument()
     Write the XML declaration at the beginning of the document.
public  voidstartElement(String uri, String localName, String qName, Attributes atts)
     Write a start tag. Pass the event on down the filter chain for further processing.
Parameters:
  uri - The Namespace URI, or the empty string if noneis available.
Parameters:
  localName - The element's local (unprefixed) name (required).
Parameters:
  qName - The element's qualified (prefixed) name, or theempty string is none is available.
public  voidstartEntity(String name)
    


Constructor Detail
XMLWriter
public XMLWriter()(Code)
Create a new XML writer.

Write to standard output.




XMLWriter
public XMLWriter(Writer writer)(Code)
Create a new XML writer.

Write to the writer provided.


Parameters:
  writer - The output destination, or null to use standardoutput.



XMLWriter
public XMLWriter(XMLReader xmlreader)(Code)
Create a new XML writer.

Use the specified XML reader as the parent.


Parameters:
  xmlreader - The parent in the filter chain, or nullfor no parent.



XMLWriter
public XMLWriter(XMLReader xmlreader, Writer writer)(Code)
Create a new XML writer.

Use the specified XML reader as the parent, and write to the specified writer.


Parameters:
  xmlreader - The parent in the filter chain, or nullfor no parent.
Parameters:
  writer - The output destination, or null to use standardoutput.




Method Detail
characters
public void characters(char ch, int start, int len) throws SAXException(Code)
Write character data. Pass the event on down the filter chain for further processing.
Parameters:
  ch - The array of characters to write.
Parameters:
  start - The starting position in the array.
Parameters:
  length - The number of characters to write.
exception:
  org.xml.sax.SAXException - If there is an errorwriting the characters, or if a handler further downthe filter chain raises an exception.
See Also:   org.xml.sax.ContentHandler.characters



comment
public void comment(char[] ch, int start, int length) throws SAXException(Code)



endCDATA
public void endCDATA() throws SAXException(Code)



endDTD
public void endDTD() throws SAXException(Code)
Write end of DOCTYPE declaration. Pass the event on down the filter chain for further processing.
exception:
  org.xml.sax.SAXException - If a filterfurther down the chain raises an exception.
See Also:   org.xml.sax.ext.LexicalHandler.endDTD



endDocument
public void endDocument() throws SAXException(Code)
Write a newline at the end of the document. Pass the event on down the filter chain for further processing.
exception:
  org.xml.sax.SAXException - If there is an errorwriting the newline, or if a handler further downthe filter chain raises an exception.
See Also:   org.xml.sax.ContentHandler.endDocument



endElement
public void endElement(String uri, String localName, String qName) throws SAXException(Code)
Write an end tag. Pass the event on down the filter chain for further processing.
Parameters:
  uri - The Namespace URI, or the empty string if noneis available.
Parameters:
  localName - The element's local (unprefixed) name (required).
Parameters:
  qName - The element's qualified (prefixed) name, or theempty string is none is available. This method willuse the qName as a template for generating a prefixif necessary, but it is not guaranteed to use thesame qName.
exception:
  org.xml.sax.SAXException - If there is an errorwriting the end tag, or if a handler further downthe filter chain raises an exception.
See Also:   org.xml.sax.ContentHandler.endElement



endEntity
public void endEntity(String name) throws SAXException(Code)



flush
public void flush() throws IOException(Code)
Flush the output.

This method flushes the output stream. It is especially useful when you need to make certain that the entire document has been written to output but do not want to close the output stream.

This method is invoked automatically by the XMLWriter.endDocument endDocument method after writing a document.


See Also:   XMLWriter.reset



forceNSDecl
public void forceNSDecl(String uri)(Code)
Force a Namespace to be declared on the root element.

By default, the XMLWriter will declare only the Namespaces needed for an element; as a result, a Namespace may be declared many places in a document if it is not used on the root element.

This method forces a Namespace to be declared on the root element even if it is not used there, and reduces the number of xmlns attributes in the document.


Parameters:
  uri - The Namespace URI to declare.
See Also:   XMLWriter.forceNSDecl(java.lang.String,java.lang.String)
See Also:   XMLWriter.setPrefix



forceNSDecl
public void forceNSDecl(String uri, String prefix)(Code)
Force a Namespace declaration with a preferred prefix.

This is a convenience method that invokes XMLWriter.setPrefix setPrefix then XMLWriter.forceNSDecl(java.lang.String)forceNSDecl .


Parameters:
  uri - The Namespace URI to declare on the root element.
Parameters:
  prefix - The preferred prefix for the Namespace, or ""for the default Namespace.
See Also:   XMLWriter.setPrefix
See Also:   XMLWriter.forceNSDecl(java.lang.String)



getPrefix
public String getPrefix(String uri)(Code)
Get the current or preferred prefix for a Namespace URI.
Parameters:
  uri - The Namespace URI. The preferred prefix, or "" for the default Namespace.
See Also:   XMLWriter.setPrefix



ignorableWhitespace
public void ignorableWhitespace(char ch, int start, int length) throws SAXException(Code)
Write ignorable whitespace. Pass the event on down the filter chain for further processing.
Parameters:
  ch - The array of characters to write.
Parameters:
  start - The starting position in the array.
Parameters:
  length - The number of characters to write.
exception:
  org.xml.sax.SAXException - If there is an errorwriting the whitespace, or if a handler further downthe filter chain raises an exception.
See Also:   org.xml.sax.ContentHandler.ignorableWhitespace



processingInstruction
public void processingInstruction(String target, String data) throws SAXException(Code)
Write a processing instruction. Pass the event on down the filter chain for further processing.
Parameters:
  target - The PI target.
Parameters:
  data - The PI data.
exception:
  org.xml.sax.SAXException - If there is an errorwriting the PI, or if a handler further downthe filter chain raises an exception.
See Also:   org.xml.sax.ContentHandler.processingInstruction



reset
public void reset()(Code)
Reset the writer.

This method is especially useful if the writer throws an exception before it is finished, and you want to reuse the writer for a new document. It is usually a good idea to invoke XMLWriter.flush flush before resetting the writer, to make sure that no output is lost.

This method is invoked automatically by the XMLWriter.startDocument startDocument method before writing a new document.

Note: this method will not clear the prefix or URI information in the writer or the selected output writer.


See Also:   XMLWriter.flush



setOutput
public void setOutput(Writer writer)(Code)
Set a new output destination for the document.
Parameters:
  writer - The output destination, or null to usestandard output. The current output writer.
See Also:   XMLWriter.flush



setPrefix
public void setPrefix(String uri, String prefix)(Code)
Specify a preferred prefix for a Namespace URI.

Note that this method does not actually force the Namespace to be declared; to do that, use the XMLWriter.forceNSDecl(java.lang.String) forceNSDecl method as well.


Parameters:
  uri - The Namespace URI.
Parameters:
  prefix - The preferred prefix, or "" to selectthe default Namespace.
See Also:   XMLWriter.getPrefix
See Also:   XMLWriter.forceNSDecl(java.lang.String)
See Also:   XMLWriter.forceNSDecl(java.lang.String,java.lang.String)



startCDATA
public void startCDATA() throws SAXException(Code)



startDTD
public void startDTD(String name, String publicId, String systemId) throws SAXException(Code)
Write start of DOCTYPE declaration. Pass the event on down the filter chain for further processing.
Parameters:
  name - The document type name.
Parameters:
  publicId - The declared public identifier for theexternal DTD subset, or null if none was declared.
Parameters:
  systemId - The declared system identifier for theexternal DTD subset, or null if none was declared.
exception:
  org.xml.sax.SAXException - If a filterfurther down the chain raises an exception.
See Also:   org.xml.sax.ext.LexicalHandler.startDTD



startDocument
public void startDocument() throws SAXException(Code)
Write the XML declaration at the beginning of the document. Pass the event on down the filter chain for further processing.
exception:
  org.xml.sax.SAXException - If there is an errorwriting the XML declaration, or if a handler further downthe filter chain raises an exception.
See Also:   org.xml.sax.ContentHandler.startDocument



startElement
public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException(Code)
Write a start tag. Pass the event on down the filter chain for further processing.
Parameters:
  uri - The Namespace URI, or the empty string if noneis available.
Parameters:
  localName - The element's local (unprefixed) name (required).
Parameters:
  qName - The element's qualified (prefixed) name, or theempty string is none is available. This method willuse the qName as a template for generating a prefixif necessary, but it is not guaranteed to use thesame qName.
Parameters:
  atts - The element's attribute list (must not be null).
exception:
  org.xml.sax.SAXException - If there is an errorwriting the start tag, or if a handler further downthe filter chain raises an exception.
See Also:   org.xml.sax.ContentHandler.startElement



startEntity
public void startEntity(String name) throws SAXException(Code)



Fields inherited from sax.XMLFilterBase
final protected static Attributes EMPTY_ATTS(Code)(Java Doc)
final protected static String[] LEXICAL_HANDLER_NAMES(Code)(Java Doc)

Methods inherited from sax.XMLFilterBase
public void characters(String data) throws SAXException(Code)(Java Doc)
public void comment(char[] ch, int start, int length) throws SAXException(Code)(Java Doc)
public void dataElement(String uri, String localName, String qName, Attributes atts, String content) throws SAXException(Code)(Java Doc)
public void dataElement(String uri, String localName, String content) throws SAXException(Code)(Java Doc)
public void dataElement(String localName, Attributes atts, String content) throws SAXException(Code)(Java Doc)
public void dataElement(String localName, String content) throws SAXException(Code)(Java Doc)
public void emptyElement(String uri, String localName, String qName, Attributes atts) throws SAXException(Code)(Java Doc)
public void emptyElement(String uri, String localName) throws SAXException(Code)(Java Doc)
public void emptyElement(String localName, Attributes atts) throws SAXException(Code)(Java Doc)
public void emptyElement(String localName) throws SAXException(Code)(Java Doc)
public void endCDATA() throws SAXException(Code)(Java Doc)
public void endDTD() throws SAXException(Code)(Java Doc)
public void endElement(String uri, String localName) throws SAXException(Code)(Java Doc)
public void endElement(String localName) throws SAXException(Code)(Java Doc)
public void endEntity(String name) throws SAXException(Code)(Java Doc)
public LexicalHandler getLexicalHandler()(Code)(Java Doc)
public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public void parse(InputSource input) throws SAXException, IOException(Code)(Java Doc)
public void setLexicalHandler(LexicalHandler handler)(Code)(Java Doc)
public void setProperty(String name, Object value) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public void startCDATA() throws SAXException(Code)(Java Doc)
public void startDTD(String name, String publicId, String systemId) throws SAXException(Code)(Java Doc)
public void startElement(String uri, String localName) throws SAXException(Code)(Java Doc)
public void startElement(String localName, Attributes atts) throws SAXException(Code)(Java Doc)
public void startElement(String localName) throws SAXException(Code)(Java Doc)
public void startEntity(String name) throws SAXException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.