📅  最后修改于: 2020-11-15 02:44:28             🧑  作者: Mango
Java.io.FilterWriter类用于编写过滤的字符流。以下是关于FilterWriter的要点-
该类本身提供了默认方法,该方法将所有请求传递到所包含的流。
FilterWriter的子类应覆盖其中的某些方法,并且还可以提供其他方法和字段。
以下是Java.io.FilterWriter类的声明-
public abstract class FilterWriter
extends Writer
以下是Java.io.FilterWriter类的字段-
−中的protected Writer,这是字符输出流。
protected Object lock-这是用于同步此流上的操作的对象。
Sr.No. | Constructor & Description |
---|---|
1 |
protected FilterWriter(Writer in) This creates a new filtered writer. |
Sr.No. | Method & Description |
---|---|
1 | void close()
This method flushes the stream. |
2 | void flush()
This method flushes the stream. |
3 | void write(char[] cbuf, int off, int len)
This method writes a portion of an array of characters. |
4 | void write(int c)
This method writes a single character. |
5 | void write(String str, int off, int len)
This method writes a portion of a string. |
此类从以下类继承方法-