Java.io.Reader.markSupported()方法實例
java.io.Reader.markSupported() 方法判斷此流是否支持mark()操作。
聲明
以下是java.io.Reader.markSupported()方法的聲明
public boolean markSupported()
參數
-
NA
返回值
當且僅當此流支持mark操作此方法返回true。
異常
-
IOException -- 如果流不支持mark(),或者是一些其他的I / O錯誤
例子
下麵的示例演示java.io.Reader.markSupported()方法的用法。
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(); System.out.print("" + c); } // change line System.out.println(); // check if mark is supported System.out.println("" + reader.markSupported()); // close the stream reader.close(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Hello true