|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjava.io.Writer
org.apache.xml.serializer.WriterToASCI
This class writes ASCII to a byte stream as quickly as possible. For the moment it does not do buffering, though I reserve the right to do some buffering down the line if I can prove that it will be faster even if the output stream is buffered.
| Constructor Summary | |
WriterToASCI(OutputStream os)
Create an unbuffered ASCII writer. |
|
| Method Summary | |
void |
close()
Close the stream, flushing it first. |
void |
flush()
Flush the stream. |
OutputStream |
getOutputStream()
Get the output stream where the events will be serialized to. |
void |
write(char[] chars,
int start,
int length)
Write a portion of an array of characters. |
void |
write(int c)
Write a single character. |
void |
write(String s)
Write a string. |
| Methods inherited from class java.io.Writer |
write, write |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public WriterToASCI(OutputStream os)
os - The byte stream to write to.| Method Detail |
public void write(char[] chars,
int start,
int length)
throws IOException
chars - Array of charactersstart - Offset from which to start writing characterslength - Number of characters to write
IOException - If an I/O error occurs
IOException
public void write(int c)
throws IOException
Subclasses that intend to support efficient single-character output should override this method.
c - int specifying a character to be written.
IOException - If an I/O error occurs
public void write(String s)
throws IOException
IOException - If an I/O error occurs
public void flush()
throws IOException
IOException - If an I/O error occurs
public void close()
throws IOException
IOException - If an I/O error occurspublic OutputStream getOutputStream()
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||