|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.xml.xmlcomp.XMLCompress
This bean class is a simple encapsulation of the XML Compression functionality. The functionalities that are supported in this class are essentially Compression of the internal DOM tree obtained via a DOMParser, Compression of the SAX events thrown by the SAX Parser, Uncompression of the serialized XML data, returning an XMLDocument object. The input for compression can be from an InputStream, a java String, a database CLOB object, an XMLType object. In all cases the outputStream has to be set before hand so that the compressed data is written to it. The case where input data is unparsed the parsing for it is done with no validation.To use different parsing options parse the document before inputting and then pass the XMLDocument object to the compressor bean. The compression factor is a rough value based on the file size of the input XML file and the compressed file. The limitation of the compression factor method is it can only be used when the compression is done using the "java.io.File" objects as parameters.
Constructor Summary | |
XMLCompress() Constructs this object by setting the various parameter |
Method Summary | |
void |
DOMCompress() Compress the XML Data set in the Text InputStream of this object and writes the compressed data into the binary outputstream |
void |
DOMCompress(oracle.sql.CLOB clob) Compress the xml data contained in the CLOB object and writes the compressed data into the binary outputstream of this object |
void |
DOMCompress(java.io.File inpTxtfile, java.io.File outpBinfile) Compress the xml data contained in the inpTxtfile and writes the compressed ouput to outpBinfile |
void |
DOMCompress(java.io.InputStream is) Compress the XML Data set in the Text InputStream and writes the compressed data into the binary outputstream |
void |
DOMCompress(java.lang.String xmldoc) Compress the xml data contained in the java String and writes the compressed data into the binary outputstream of this object |
void |
DOMCompress(XMLDocument xmldoc) Compress the XMLDocument object and writes the compressed data into the binary outputstream of this object |
void |
DOMCompress(XMLType xmldoc) Compress the xml data contained in the database XMLType object and writes the compressed data into the binary outputstream of this object |
void |
DOMExpand() Uncompresses the binary inputstream and populates the XMLDocument of this object. |
void |
DOMExpand(oracle.sql.BLOB blob) Uncompresses the BLOB parameter and populates the XMLDocument of this object. |
void |
DOMExpand(java.io.File inpBinfile, java.io.File outpTxtfile) UnCompress the data contained in the inpBinfile and writes the compressed ouput to outpTxtfile |
void |
DOMExpand(java.io.InputStream inpstr) Uncompresses the binary inputstream parameter and populates the XMLDocument of this object. |
float |
getCompPercent() Return the compression factor. |
XMLDocument |
getXMLDocument() Returns the XMLDocument object obtained from compressed data |
void |
SAXCompress(java.io.File inpTxtfile, java.io.File outpBinfile) Compress the xml data contained in the inpTxtfile and writes the compressed ouput to outpBinfile |
void |
SAXCompress(java.io.InputStream xmltext) Compress the XML data in the Inputstream to a binary stream which contains the SAX events |
void |
SAXCompress(java.lang.String xmltext) Compress the XML data in the String to a binary stream which contains the SAX events |
void |
setBinInputStream(java.io.InputStream binstr) Sets the Binary inputstream to write the compressed data |
void |
setBinOutputStream(java.io.OutputStream binstr) Sets the Binary outputstream to write the compressed data |
void |
setXMLDocument(XMLDocument setDoc) Sets the XMLDocument object that needs to be Compressed |
void |
setXmlTextInputStream(java.io.InputStream txtstr) Sets the Text Inputstream to compress the data |
void |
setXmlTextOutputStream(java.io.OutputStream txtstr) Sets the Text outputstream to write the XML data |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public XMLCompress()
Method Detail |
public void setBinOutputStream(java.io.OutputStream binstr)
public void setBinInputStream(java.io.InputStream binstr)
public void setXmlTextOutputStream(java.io.OutputStream txtstr)
public void setXmlTextInputStream(java.io.InputStream txtstr)
public XMLDocument getXMLDocument()
public void setXMLDocument(XMLDocument setDoc)
public void DOMCompress() throws XMLParseException, SAXException, java.io.IOException
XMLParseException,
- SAXException, IOExceptionXMLParseException
SAXException
java.io.IOException
public void DOMCompress(java.io.InputStream is) throws XMLParseException, SAXException, java.io.IOException
XMLParseException,
- SAXException, IOExceptionXMLParseException
SAXException
java.io.IOException
public void DOMCompress(XMLDocument xmldoc) throws java.io.IOException
java.io.IOException
public void DOMCompress(java.lang.String xmldoc) throws XMLParseException, SAXException, java.io.IOException
java.io.IOException
XMLParseException
SAXException
public void DOMCompress(oracle.sql.CLOB clob) throws XMLParseException, SAXException, java.io.IOException, java.sql.SQLException
java.io.IOException
XMLParseException
SAXException
java.sql.SQLException
public void DOMCompress(XMLType xmldoc) throws java.io.IOException, XMLParseException, SAXException, java.sql.SQLException
IOException,XMLParseException,SAXException,SQLException
java.io.IOException
XMLParseException
SAXException
java.sql.SQLException
public void DOMCompress(java.io.File inpTxtfile, java.io.File outpBinfile) throws java.io.IOException, XMLParseException, SAXException, java.sql.SQLException
IOException,XMLParseException,SAXException,SQLException
java.io.IOException
XMLParseException
SAXException
java.sql.SQLException
public void DOMExpand() throws java.io.IOException, java.io.EOFException, java.lang.ClassNotFoundException
IOException,EOFException,ClassNotFoundException
java.io.IOException
java.io.EOFException
java.lang.ClassNotFoundException
public void DOMExpand(java.io.InputStream inpstr) throws java.io.IOException, java.io.EOFException, java.lang.ClassNotFoundException
IOException,EOFException,ClassNotFoundException
java.io.IOException
java.io.EOFException
java.lang.ClassNotFoundException
public void DOMExpand(oracle.sql.BLOB blob) throws java.sql.SQLException, java.io.IOException, java.io.EOFException, java.lang.ClassNotFoundException
SQLException,IOException,EOFException,ClassNotFoundException
java.sql.SQLException
java.io.IOException
java.io.EOFException
java.lang.ClassNotFoundException
public void DOMExpand(java.io.File inpBinfile, java.io.File outpTxtfile) throws java.io.IOException, XMLParseException, java.sql.SQLException, java.lang.ClassNotFoundException
IOException,XMLParseException,SAXException,SQLException
java.io.IOException
XMLParseException
java.sql.SQLException
java.lang.ClassNotFoundException
public void SAXCompress(java.io.InputStream xmltext) throws SAXException, XMLParseException, java.io.IOException
SAXException,XMLParseException,IOException
SAXException
XMLParseException
java.io.IOException
public void SAXCompress(java.io.File inpTxtfile, java.io.File outpBinfile) throws java.io.IOException, XMLParseException, SAXException
IOException,XMLParseException,SAXException,SQLException
java.io.IOException
XMLParseException
SAXException
public void SAXCompress(java.lang.String xmltext) throws SAXException, XMLParseException, java.io.IOException
SAXException,XMLParseException,IOException
SAXException
XMLParseException
java.io.IOException
public float getCompPercent()
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |