java.io.Writer.write(char[] cbuf,int off,int len)方法實例
java.io.Writer.write(char[] cbuf,int off,int len) 方法寫入字符數組的一部分。
聲明
以下是java.io.Writer.write()方法的聲明
public abstract void write(char[] cbuf,int off,int len)
參數
cbuf -- 寫入的字符數組
off -- 從開始寫入字符的偏移量
len -- 要寫入的字符數
返回值
此方法沒有返回值
異常
- IOException -- 如果發生I/ O錯誤
例子
下面的示例演示java.io.Writer.write()方法的用法。
package com.yiibai; import java.io.*; public class WriterDemo { public static void main(String[] args) { char[] c = {'h', 'e', 'l', 'l', 'o', 'w', 'o', 'r', 'l', 'd'}; // create a new writer Writer writer = new PrintWriter(System.out); try { // write a portion of a char array writer.write(c, 0, 5); // flush the writer writer.flush(); // write another portion of a char array writer.write(c, 5, 5); // flush the stream again writer.close(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們來編譯和運行上面的程序,這將產生以下結果:
helloworld