Java PushbackReader read()方法
java.io.PushbackReader.read(char[] cbuf,int off,int len) 方法读取字符到一个数组中的一部分。
1 语法
public int read(char[] cbuf,int off,int len)
2 参数
cbuf:目标缓冲区
off:写入字符偏移量开始
len:要读取的字符的最大数
3 返回值
此方法返回读取的字符数,或如果已到达流的末尾返回-1
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PushbackReader.read(char[] cbuf,int off,int len)方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
String s = "Hello World";
// create a new StringReader
StringReader sr = new StringReader(s);
// create a new PushBack reader based on our string reader
PushbackReader pr = new PushbackReader(sr, 20);
// create a char array to read chars into
char cbuf[] = new char[5];
try {
// read characters into an array.
System.out.println("" + pr.read(cbuf));
// print cbuf
System.out.println(cbuf);
// Close the stream
pr.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
输出结果为:
5
Hello
热门文章
优秀文章