java.io.FilterWriter.write(char[] cbuf, int off, int len)方法實例
java.io.FilterWriter.write(char[] cbuf, int off, int len) 方法寫入len個字符部分到文件寫入器, 從偏移量off的位置讀取字符數組。
聲明
以下是java.io.FilterWriter.write(char[] cbuf, int off, int len) 方法的聲明:
public void write(char[] cbuf, int off, int len)
參數
-
cbuf -- 源字符緩衝區寫入此過濾器寫入器。
-
off -- 開始讀取字符的偏移量。
-
len -- 要寫入的字符數。
返回值
該方法不返回任何值。
異常
-
IOException -- 如果發生I/ O錯誤。
例子
下麵的例子顯示java.io.FilterWriter.write(char[] cbuf, int off, int len) 方法的用法。
package com.yiibai; import java.io.FilterWriter; import java.io.StringWriter; import java.io.Writer; public class FilterWriterDemo { public static void main(String[] args) throws Exception { FilterWriter fw = null; Writer w = null; char[] cbuf={'A','B','C','D','E','F'}; String s=null; try{ // create new reader w = new StringWriter(6); // filter writer fw = new FilterWriter(w) { }; // write to filter writer from character buffer fw.write(cbuf, 2, 4); // get the string s = w.toString(); // print System.out.print("String: "+s); }catch(Exception e){ // if any I/O error occurs e.printStackTrace(); }finally{ // releases system resources associated with this stream if(w!=null) w.close(); if(fw!=null) fw.close(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
String: CDEF