|
DCT Lightfoot v3 API specification | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object
|
+--java.io.Writer
|
+--java.io.OutputStreamWriter
| Field Summary |
| Fields inherited from class java.io.Writer |
lock |
| Constructor Summary | |
OutputStreamWriter(OutputStream os)
Create an output stream writer from an output stream |
|
OutputStreamWriter(OutputStream os,
java.lang.String enc)
Create an output stream using an encoding |
|
| Method Summary | |
void |
close()
Close the stream |
void |
flush()
Flush the stream |
void |
write(char[] cBuf,
int off,
int len)
Write a character array to the stream |
void |
write(int ch)
Write a single character to the stream |
void |
write(java.lang.String str,
int off,
int len)
Write a string to the stream |
| 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 OutputStreamWriter(OutputStream os)
os - The stream
public OutputStreamWriter(OutputStream os,
java.lang.String enc)
os - The streamenc - The encoding| Method Detail |
public void close()
throws IOException
close in class WriterIOException - if there is a problem
public void flush()
throws IOException
flush in class WriterIOException - if there is a problem
public void write(char[] cBuf,
int off,
int len)
throws IOException
write in class Writeroff - The offset into the bufferlen - The length of the buffercBuf - The buffer to write
IOException - if there is a problem
public void write(int ch)
throws IOException
write in class Writerch - The character
IOException - if there is a problem
public void write(java.lang.String str,
int off,
int len)
throws IOException
write in class Writerstr - The stringoff - The offsetlen - The length
IOException - if there is a problem
|
DCT Lightfoot v3 API specification | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||