|
Spec-Zone .ru
спецификации, руководства, описания, API
|
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--java.io.Writer
|
+--java.io.FilterWriter
Abstract class for writing filtered character streams.
| Field Summary | |
protected Writer |
out
The underlying character-output stream. |
| Fields inherited from class java.io.Writer |
lock |
| Constructor Summary | |
protected |
FilterWriter(Writer out)
Create a new filtered writer. |
| Method Summary | |
void |
close()
Close the stream. |
void |
flush()
Flush the stream. |
void |
write(char[] cbuf,
int off,
int len)
Write a portion of an array of characters. |
void |
write(int c)
Write a single character. |
void |
write(String str,
int off,
int len)
Write a portion of a string. |
| Methods inherited from class java.io.Writer |
write, write |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected Writer out
| Constructor Detail |
protected FilterWriter(Writer out)
out - a Writer object to provide the underlying stream.| Method Detail |
public void write(int c)
throws IOException
write in class WriterIOException - If an I/O error occurs
public void write(char[] cbuf,
int off,
int len)
throws IOException
write in class Writercbuf - Buffer of characters to be writtenoff - Offset from which to start reading characterslen - Number of characters to be writtenIOException - If an I/O error occurs
public void write(String str,
int off,
int len)
throws IOException
write in class Writerstr - String to be writtenoff - Offset from which to start reading characterslen - Number of characters to be writtenIOException - If an I/O error occurs
public void flush()
throws IOException
flush in class WriterIOException - If an I/O error occurs
public void close()
throws IOException
close in class WriterIOException - If an I/O error occurs
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.