Java.io.StringReader.markSupported()方法實例
java.io.StringReader.markSupported() 方法判斷此流是否支持mark()操作,這確實如此。
聲明
以下是java.io.StringReader.markSupported()方法的聲明
public boolean markSupported()
參數
-
NA
返回值
當且僅當此流支持mark操作此方法返回true。
異常
-
NA
例子
下麵的示例演示java.io.StringReader.markSupported()方法的用法。
package com.yiibai; import java.io.*; public class StringReaderDemo { public static void main(String[] args) { String s = "Hello World"; // create a new StringReader StringReader sr = new StringReader(s); try { // read the first five chars for (int i = 0; i < 5; i++) { char c = (char) sr.read(); System.out.print("" + c); } // change line System.out.println(); // print if mark is supported System.out.println("" + sr.markSupported()); // close the stream sr.close(); } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
Hello true