|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.xml.sax.helpers.DefaultHandler
org.opencms.util.CmsXmlSaxWriter
public class CmsXmlSaxWriter
Simple SAX event handler that generates a XML (or HTML) file from the events caught.
This can be used for writing large XML files where keeping a DOM structure in memory might cause out-of-memory issues, like e.g. when writing the OpenCms export files.
It can also be used if a
is needed that should
generate a XML / HTML file from a series of SAX events.ContentHandler
Constructor Summary | |
---|---|
CmsXmlSaxWriter()
Creates a SAX event handler that generates XML / HTML Strings from the events caught using a new and the OpenCms default encoding. |
|
CmsXmlSaxWriter(java.lang.String encoding)
Creates a SAX event handler that generates XML / HTML Strings from the events caught using a new and the given encoding. |
|
CmsXmlSaxWriter(java.io.Writer writer)
Creates a SAX event handler that generates XML / HTML Strings from the events caught using a new and the given encoding. |
|
CmsXmlSaxWriter(java.io.Writer writer,
java.lang.String encoding)
A SAX event handler that generates XML / HTML Strings from the events caught and writes them to the given Writer. |
Method Summary | |
---|---|
void |
characters(char[] buf,
int offset,
int len)
|
void |
comment(char[] ch,
int start,
int length)
|
void |
endCDATA()
|
void |
endDocument()
|
void |
endDTD()
|
void |
endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qualifiedName)
|
void |
endEntity(java.lang.String name)
|
java.lang.String |
getEncoding()
Returns the encoding this XML Sax writer was initialized with. |
java.io.Writer |
getWriter()
Returns the Writer where the XML is written to. |
boolean |
isEscapeUnknownChars()
Returns true if charactes that are not part of the selected encoding
are to be replaced with the HTML { entity representation
in the generated output (not in CDATA elements). |
boolean |
isEscapeXml()
Returns true if XML entities are to be encoded in the generated output (not in CDATA elements). |
void |
setEncoding(java.lang.String value)
Sets the encoding to use for the generated output. |
void |
setEscapeUnknownChars(boolean value)
If set to true , then charactes that are not part of the selected encoding
are to be replaced with the XML { entity representation
in the generated output (not in CDATA elements). |
void |
setEscapeXml(boolean value)
If set to true , then
XML entities are to be encoded in the generated output (not in CDATA elements). |
void |
startCDATA()
|
void |
startDocument()
|
void |
startDTD(java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
|
void |
startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qualifiedName,
org.xml.sax.Attributes attributes)
|
void |
startEntity(java.lang.String name)
|
Methods inherited from class org.xml.sax.helpers.DefaultHandler |
---|
endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startPrefixMapping, unparsedEntityDecl, warning |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CmsXmlSaxWriter()
StringWriter
and the OpenCms default encoding.
public CmsXmlSaxWriter(java.lang.String encoding)
StringWriter
and the given encoding.
encoding
- the encoding for the XML filepublic CmsXmlSaxWriter(java.io.Writer writer)
StringWriter
and the given encoding.
writer
- the Writer to write to output topublic CmsXmlSaxWriter(java.io.Writer writer, java.lang.String encoding)
writer
- the Writer to write to output toencoding
- the encoding for the XML fileMethod Detail |
---|
public void characters(char[] buf, int offset, int len) throws org.xml.sax.SAXException
characters
in interface org.xml.sax.ContentHandler
characters
in class org.xml.sax.helpers.DefaultHandler
org.xml.sax.SAXException
ContentHandler.characters(char[], int, int)
public void comment(char[] ch, int start, int length)
comment
in interface org.xml.sax.ext.LexicalHandler
LexicalHandler.comment(char[], int, int)
public void endCDATA() throws org.xml.sax.SAXException
endCDATA
in interface org.xml.sax.ext.LexicalHandler
org.xml.sax.SAXException
LexicalHandler.endCDATA()
public void endDocument() throws org.xml.sax.SAXException
endDocument
in interface org.xml.sax.ContentHandler
endDocument
in class org.xml.sax.helpers.DefaultHandler
org.xml.sax.SAXException
ContentHandler.endDocument()
public void endDTD()
endDTD
in interface org.xml.sax.ext.LexicalHandler
LexicalHandler.endDTD()
public void endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qualifiedName) throws org.xml.sax.SAXException
endElement
in interface org.xml.sax.ContentHandler
endElement
in class org.xml.sax.helpers.DefaultHandler
org.xml.sax.SAXException
ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
public void endEntity(java.lang.String name)
endEntity
in interface org.xml.sax.ext.LexicalHandler
LexicalHandler.endEntity(java.lang.String)
public java.lang.String getEncoding()
public java.io.Writer getWriter()
public boolean isEscapeUnknownChars()
true
if charactes that are not part of the selected encoding
are to be replaced with the HTML {
entity representation
in the generated output (not in CDATA elements).
true
if charactes that are not part of the selected encoding
are to be replaced with the HTML entity representationpublic boolean isEscapeXml()
true
if XML entities are to be encoded in the generated output (not in CDATA elements).
true
if XML entities are to be encoded in the generated output (not in CDATA elements)public void setEncoding(java.lang.String value)
value
- the encoding to use for the generated outputpublic void setEscapeUnknownChars(boolean value)
true
, then charactes that are not part of the selected encoding
are to be replaced with the XML {
entity representation
in the generated output (not in CDATA elements).
value
- indicates to escape unknown characters with XML entities or notpublic void setEscapeXml(boolean value)
true
, then
XML entities are to be encoded in the generated output (not in CDATA elements).
value
- indicates to to escape characters with XML entities or notpublic void startCDATA()
startCDATA
in interface org.xml.sax.ext.LexicalHandler
LexicalHandler.startCDATA()
public void startDocument() throws org.xml.sax.SAXException
startDocument
in interface org.xml.sax.ContentHandler
startDocument
in class org.xml.sax.helpers.DefaultHandler
org.xml.sax.SAXException
ContentHandler.startDocument()
public void startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId) throws org.xml.sax.SAXException
startDTD
in interface org.xml.sax.ext.LexicalHandler
org.xml.sax.SAXException
LexicalHandler.startDTD(java.lang.String, java.lang.String, java.lang.String)
public void startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qualifiedName, org.xml.sax.Attributes attributes) throws org.xml.sax.SAXException
startElement
in interface org.xml.sax.ContentHandler
startElement
in class org.xml.sax.helpers.DefaultHandler
org.xml.sax.SAXException
ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
public void startEntity(java.lang.String name)
startEntity
in interface org.xml.sax.ext.LexicalHandler
LexicalHandler.startEntity(java.lang.String)
|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |