java.io.PushbackReader.unread(int c)方法實例
java.io.PushbackReader.unread(int c) 方法將其複製到推回緩衝區前面推回一個字符。此方法返回後,將下一個字符被讀取的值(字符)。
聲明
以下是java.io.PushbackReader.unread()方法的聲明
public void unread(int c)
參數
- c -- 整型值,表示一個字符被推回
返回值
此方法沒有返回值
異常
- IOException -- 如果推回緩衝區已滿,或者發生其他I/ O錯誤
例子
下面的示例演示java.io.PushbackReader.unread()方法的用法。
package com.yiibai; import java.io.*; public class PushbackReaderDemo { 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); try { // read the first five chars for (int i = 0; i < 5; i++) { char c = (char) pr.read(); System.out.print("" + c); } // change line System.out.println(); // unread a character pr.unread('F'); // read the next char, which is the one we unread char c = (char) pr.read(); // print that character System.out.println("" + c); // close the stream pr.close(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上面的程序,這將產生以下結果:
Hello F