Java.io.BufferedInputStream.markSupported()方法實例
java.io.BufferedInputStream.markSupported() 方法測試,如果輸入流類型supportsmark()和reset()方法。 markSupported()方法用於緩衝輸入流返回true。
聲明
以下是java.io.BufferedInputStream.markSupported()方法的聲明
public boolean markSupported()
參數
- NA
返回值
如果流類型支持 mark() 和 read()方法,此方法返回true;否則該方法返回false。
異常
- NA
例子
下面的示例演示java.io.BufferedInputStream.markSupported()方法的用法。
package com.yiibai; import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.InputStream; public class BufferedInputStreamDemo { public static void main(String[] args) throws Exception { InputStream inStream = null; BufferedInputStream bis = null; boolean bool = false; try{ // open input stream test.txt for reading purpose. inStream = new FileInputStream("c:/test.txt"); // input stream is converted to buffered input stream bis = new BufferedInputStream(inStream); // returns true if mark() and read() supports bool = bis.markSupported(); System.out.println("Support for mark() and reset() : "+bool); }catch(Exception e){ e.printStackTrace(); }finally{ // releases any system resources associated with the stream if(bis!=null) bis.close(); if(inStream!=null) inStream.close(); } } }
假設有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入在示例程序:
ABCDE
讓我們來編譯和運行上面的程序,這將產生以下結果:
Support for mark() and reset() : true