返回介绍

java.io 类 FilterWriter

发布于 2019-10-04 09:50:45 字数 5385 浏览 811 评论 0 收藏 0

java.lang.Object
  └java.io.Writer
      └java.io.FilterWriter
所有已实现的接口:
Closeable, Flushable, Appendable

public abstract class FilterWriter
extends Writer
 

用于写入已过滤的字符流的抽象类。抽象类 FilterWriter 自身提供了一些将所有请求传递给所包含的流的默认方法。 FilterWriter 的子类应重写这些方法中的一些方法,并且还可以提供一些额外的方法和字段。

从以下版本开始:
JDK1.1

字段摘要
protected Writerout

基础字符输出流。

从类 java.io.Writer 继承的字段
lock
构造方法摘要
protectedFilterWriter(Writerout)

创建一个新的 filtered writer。

方法摘要
voidclose()

关闭该流。

voidflush()

刷新该流的缓冲。

voidwrite(char[]cbuf, intoff, intlen)

将字符写入数组的某一部分。

voidwrite(intc)

写入单个字符。

voidwrite(Stringstr, intoff, intlen)

写入一部分字符串。

从类 java.io.Writer 继承的方法
append, append, append, write, write
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

字段详细信息

out

protected Writer out
基础字符输出流。

构造方法详细信息

FilterWriter

protected FilterWriter(Writerout)
创建一个新的 filtered writer。
参数:
out - 提供基础流的 Writer 对象。
抛出:
NullPointerException - 如果 outnull

方法详细信息

write

public void write(intc)
           throws IOException
写入单个字符。
覆盖:
Writer 中的 write
参数:
c - 指定要写入字符的 int。
抛出:
IOException - 如果发生 I/O 错误

write

public void write(char[]cbuf,
                  intoff,
                  intlen)
           throws IOException
将字符写入数组的某一部分。
指定者:
Writer 中的 write
参数:
cbuf - 待写入的字符缓冲区
off - 偏移量,从该处开始读取字符
len - 待写入字符的数量
抛出:
IOException - 如果发生 I/O 错误

write

public void write(Stringstr,
                  intoff,
                  intlen)
           throws IOException
写入一部分字符串。
覆盖:
Writer 中的 write
参数:
str - 待写入的字符串
off - 偏移量,从该处开始读取字符
len - 待写入字符的数量
抛出:
IOException - 如果发生 I/O 错误

flush

public void flush()
           throws IOException
刷新该流的缓冲。
指定者:
接口 Flushable 中的 flush
指定者:
Writer 中的 flush
抛出:
IOException - 如果发生 I/O 错误

close

public void close()
           throws IOException
关闭该流。
指定者:
接口 Closeable 中的 close
指定者:
Writer 中的 close
抛出:
IOException - 如果发生 I/O 错误

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文