Java PrintWriter write()方法
java.io.PrintWriter.write(char[] buf,int off,int len) 方法写入字符数组的一部分。
1 语法
public void write(char[] buf,int off,int len)
2 参数
buf:要写入的字符数组。
off:开始写入字符的偏移量。
len:要写入的字符数。
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PrintWriter.write(char[] buf,int off,int len)方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
char[] c = {'a', 'b', 'c', 'd', 'e', 'f'};
// create a new writer
PrintWriter pw = new PrintWriter(System.out);
// write char
pw.write(c, 1, 3);
pw.write(c, 3, 3);
// flush the writer
pw.flush();
}
}
输出结果为:
bcddef
热门文章
优秀文章