Java.io.Reader.skip()方法實例
java.io.Reader.skip(long n) 方法跳過字符。此方法將阻塞,直到有字符可用,發生I/O錯誤,或者該流的末尾。
聲明
以下是java.io.Reader.skip()方法的聲明
public long skip(long n)
參數
-
n -- 實際上跳過的字符數
返回值
此方法返回實際上跳過的字符數
異常
-
IllegalArgumentException -- 如果n為負。
-
IOException -- 如果發生I/O錯誤
例子
下麵的示例演示java.io.Reader.skip()方法的用法。
package com.yiibai; import java.io.*; public class ReaderDemo { public static void main(String[] args) { String s = "Hello World"; // create a new StringReader Reader reader = new StringReader(s); try { // read the first five chars for (int i = 0; i < 5; i++) { char c = (char) reader.read(); // skip a char every time reader.skip(1); System.out.print("" + c); } // change line System.out.println(); // close the stream reader.close(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
HloWr