W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
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 |
修飾符 | 構造函數(shù) | 描述 |
---|---|---|
protected | FilterWriter(Writer out) | 創(chuàng)建一個新的過濾 writer。 |
修飾符和類型 | 方法 | 描述 |
---|---|---|
void | close() | 關閉流,首先刷新它。 |
void | flush() | 沖洗流。 |
void | write(char[] cbuf, int off, int len) | 寫入字符數(shù)組的一部分。 |
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 |
protected Writer out
底層字符輸出流。
protected FilterWriter(Writer out)
創(chuàng)建一個新的過濾 writer。
參數(shù):
參數(shù)名稱 | 參數(shù)描述 |
---|---|
out | 提供底層流的 Writer 對象。 |
Throws:
Throw名稱 | Throw描述 |
---|---|
NullPointerException | 如果 out 為空 |
public void write(int c) throws IOException
寫入單個字符。
覆蓋:
在 Writer 類中寫
參數(shù):
參數(shù)名稱 | 參數(shù)描述 |
---|---|
c | int 指定要寫入的字符 |
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤 |
public void write(char[] cbuf, int off, int len) throws IOException
寫入字符數(shù)組的一部分。
指定者:
在 Writer 類中寫
參數(shù):
參數(shù)名稱 | 參數(shù)描述 |
---|---|
cbuf | 要寫入的字符緩沖區(qū) |
off | 開始讀取字符的偏移量 |
len | 要寫入的字符數(shù) |
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤 |
public void write(String str, int off, int len) throws IOException
寫入字符串的一部分。
覆蓋:
在 Writer 類中寫
參數(shù):
參數(shù)名稱 | 參數(shù)描述 |
---|---|
str | 要寫入的字符串 |
off | 開始讀取字符的偏移量 |
len | 要寫入的字符數(shù) |
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤 |
public void flush() throws IOException
沖洗流。
指定者:
在接口 Flushable 中刷新
指定者:
在 Writer 類中刷新
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤 |
public void close() throws IOException
從班級復制的描述:Writer
關閉流,首先刷新它。 一旦流被關閉,進一步的 write() 或 flush() 調(diào)用將導致拋出 IOException。 關閉以前關閉的流沒有效果。
指定者:
在接口 AutoCloseable 中關閉
指定者:
在接口Closeable中關閉
指定者:
close in class Writer
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: