Java CharArrayReader read()方法
java.io.CharArrayReader.read() 用于读取单个字符。如果流结束,则返回-1。
1 语法
public int read()
2 参数
无
3 返回值
该方法以从0到65535范围内的整数形式返回读取的字符。如果流已到达,则read()返回-1。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.CharArrayReader.read()方法的例子
*/
import java.io.CharArrayReader;
import java.io.IOException;
public class Demo {
public static void main(String[] args) { CharArrayReader car = null;
char[] ch = {'H', 'E', 'L', 'L', 'O'};
try {
// create new character array reader
car = new CharArrayReader(ch);
int value = 0;
// read till the end of the file
while((value = car.read())!=-1) {
char c = (char)value;
// print the character
System.out.print(c+" : ");
// print the integer
System.out.println(value);
}
} catch(IOException e) {
// if I/O error occurs
e.printStackTrace();
} finally {
// releases any system resources associated with the stream
if(car!=null)
car.close();
}
}
}
输出结果为:
H : 72
E : 69
L : 76
L : 76
O : 79
热门文章
优秀文章