codecamp

鸿蒙OS FilterWriter

FilterWriter

java.lang.Object

|---java.io.Writer

|---|---java.io.FilterWriter

public abstract class FilterWriter
extends Writer

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

Since:

JDK1.1

字段摘要

修饰符和类型 字段 描述
protected Writer out 底层字符输出流。
从类 java.io.Writer 继承的字段
lock

构造函数摘要

修饰符 构造函数 描述
protected FilterWriter(Writer out) 创建一个新的过滤 writer。

方法总结

修饰符和类型 方法 描述
void close() 关闭流,首先刷新它。
void flush() 冲洗流。
void write(char[] cbuf, int off, int len) 写入字符数组的一部分。
void write(int c) 写入单个字符。
void write(String str, int off, int len) 写入字符串的一部分。
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
从类 java.io.Writer 继承的方法
append, append, append, write, write

字段详细信息

out

protected Writer out

底层字符输出流。

构造函数详细信息

FilterWriter

protected FilterWriter(Writer out)

创建一个新的过滤 writer。

参数:

参数名称 参数描述
out 提供底层流的 Writer 对象。

Throws:

Throw名称 Throw描述
NullPointerException 如果 out 为空

方法详情

write

public void write(int c) throws IOException

写入单个字符。

覆盖:

在 Writer 类中写

参数:

参数名称 参数描述
c int 指定要写入的字符

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误

write

public void write(char[] cbuf, int off, int len) throws IOException

写入字符数组的一部分。

指定者:

在 Writer 类中写

参数:

参数名称 参数描述
cbuf 要写入的字符缓冲区
off 开始读取字符的偏移量
len 要写入的字符数

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误

write

public void write(String str, int off, int len) throws IOException

写入字符串的一部分。

覆盖:

在 Writer 类中写

参数:

参数名称 参数描述
str 要写入的字符串
off 开始读取字符的偏移量
len 要写入的字符数

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误

flush

public void flush() throws IOException

冲洗流。

指定者:

在接口 Flushable 中刷新

指定者:

在 Writer 类中刷新

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误

close

public void close() throws IOException

从班级复制的描述:Writer

关闭流,首先刷新它。 一旦流被关闭,进一步的 write() 或 flush() 调用将导致抛出 IOException。 关闭以前关闭的流没有效果。

指定者:

在接口 AutoCloseable 中关闭

指定者:

在接口Closeable中关闭

指定者:

close in class Writer

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误
鸿蒙OS FilterReader
鸿蒙OS InputStream
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

鸿蒙OS 开发

鸿蒙OS 术语

鸿蒙OS Java API参考

鸿蒙OS ohos.aafwk.ability

鸿蒙OS ohos.aafwk.abilityjet.activedata

鸿蒙OS ohos.aafwk.content

鸿蒙OS java.lang

鸿蒙OS java.Util

鸿蒙OS java.Util class

鸿蒙OS ohos.data.dataability

鸿蒙OS ohos.data.dataability class

鸿蒙OS ohos.agp.components

鸿蒙OS ohos.agp.components interface

鸿蒙OS ohos.agp.components class

鸿蒙OS ohos.global.configuration

鸿蒙OS java.io

鸿蒙OS ohos.data.resultset

鸿蒙OS ohos.data.resultset interface

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }