Java Writer write()方法
java.io.Writer.write(char[] cbuf,int off,int len) 写入一部分字符数组。
1 语法
public abstract void write(char[] cbuf,int off,int len)
2 参数
cbuf:要写入的字符数组。
off:开始写入字符的偏移量。
len:要写入的字符数。
3 返回值
返回true。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.Writer.write(char[] cbuf,int off,int len)方法的例子
*/
import java.io.*;
public class Demo {
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
热门文章
优秀文章