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