Java.io.BufferedWriter.write(char[] cbuf, int off, int len) 方法實例
java.io.BufferedWriter.write(char[] cbuf, int off, int len) 方法寫入的字符緩衝區一塊到writer。抵消了從開始讀取字符,len是從字符緩衝區的部分的長度。
聲明
以下是聲明java.io.BufferedWriter.write(char[] cbuf, int off, int len) 方法:
public void write(char[] cbuf, int off, int len)
參數
cbuf -- 要寫入的字符數組
off -- 關閉偏移開始讀取字符緩衝區
len -- 被寫入到該流的字符數
返回值
此方法不返回任何值。
異常
- IOException -- 如果發生I/ O錯誤。
例子
下面的例子顯示java.io.BufferedWriter.write(char[] cbuf, int off, int len) 方法。
package com.yiibai; import java.io.BufferedWriter; import java.io.IOException; import java.io.StringWriter; public class BufferedWriterDemo { public static void main(String[] args) throws IOException { StringWriter sw = null; BufferedWriter bw = null; char[] cbuf = "ABCDEFGHIJKLMN".toCharArray(); try{ // create string writer sw = new StringWriter(); //create buffered writer bw = new BufferedWriter(sw); // write from specified character buffer to stream bw.write(cbuf, 2, 5); // forces out the characters to string writer bw.flush(); // string buffer is created StringBuffer sb = sw.getBuffer(); //prints the string System.out.println(sb); }catch(IOException e){ // if I/O error occurs e.printStackTrace(); }finally{ // releases any system resources associated with the stream if(sw!=null) sw.close(); if(bw!=null) bw.close(); } } }
讓我們來編譯和運行上面的程序,這將產生以下結果:
CDEFG