Java CharArrayReader skip()方法
java.io.CharArrayReader.skip(long n) 用于跳过输入流中的字符。
1 语法
public long skip(long n)
2 参数
n:要跳过的字符数。
3 返回值
实际跳过的字符数。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.CharArrayReader.skip(long n)方法的例子
*/
import java.io.CharArrayReader;
import java.io.IOException;
public class Demo {
public static void main(String[] args) { CharArrayReader car = null;
char[] ch = {'A', 'B', 'C', 'D', 'E'};
try {
// create new character array reader
car = new CharArrayReader(ch);
int value = 0;
// read till the end of the stream
while((value = car.read())!=-1) {
// convert integer to char
char c = (char)value;
// print characters
System.out.print(c + "; ");
// skip single character
long l = car.skip(1);
System.out.println("Characters Skipped : "+l);
}
} catch(IOException e) {
// if I/O error occurs
e.printStackTrace();
} finally {
// releases any system resources associated with the stream
if(car!=null)
car.close();
}
}
}
输出结果为:
A; Characters Skipped : 1
C; Characters Skipped : 1
E; Characters Skipped : 0
热门文章
优秀文章