Java.io.InputStream.markSupported()方法實例
java.io.InputStream.markSupported() 如果方法測試該輸入流是否支持mark()和reset()方法。
聲明
以下是java.io.InputStream.markSupported()方法的聲明:
public boolean markSupported()
參數
-
NA
返回值
如果此流實例的支持mark和reset方法,該方法返回true。
異常
-
NA
例子
下麵的示例演示java.io.InputStream.markSupported()方法的用法。
package com.yiibai; import java.io.FileInputStream; import java.io.InputStream; public class InputStreamDemo { public static void main(String[] args) throws Exception { InputStream is = null; boolean bool = false; try{ // new input stream created is = new FileInputStream("C://test.txt"); // returns true if the mark()/reset() supported. bool = is.markSupported(); // prints System.out.print("Is mark()/reset() supported? "); System.out.print(bool); }catch(Exception e){ // if any I/O error occurs e.printStackTrace(); }finally{ // releases system resources associated with this stream if(is!=null) is.close(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDEF
讓我們編譯和運行上麵的程序,這將產生以下結果:
Is mark()/reset() supported? false