Java FilterInputStream markSupported()方法与示例

FilterInputStream类markSupported()方法

  • markSupported()方法在java.io包中可用。

  • 的markSupported()方法被用来检查是否此FilterInputStream中支撑mark()reset()或没有。

  • markSupported()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • 在检查支持方法时,markSupported()方法不会引发异常。

语法:

    public boolean markSupported();

参数:

  • 它不接受任何参数。

返回值:

方法的返回类型为boolean,当此流支持方法时返回truemark()否则返回false

示例

//Java程序演示示例 
//方法 
//FilterInputStream-

import java.io.*;

public class MarkSupportedOfFIS {
 public static void main(String[] args) throws Exception {
  FileInputStream fis_stm = null;
  FilterInputStream fil_stm = null;

  try {
   //实例化FileInputStream和 
   //FilterInputStream-
   fis_stm = new FileInputStream("D:\\includehelp.txt");
   fil_stm = new BufferedInputStream(fis_stm);

   //通过使用markSupported()方法是 
   //检查此流fil_stm是否支持
   // mark()方法与否

   boolean status = fil_stm.markSupported();
   System.out.println("fil_stm.markSupported(): " + status);
  } catch (Exception ex) {
   System.out.println(ex.toString());

  } finally {
   //借助此块可以
   //释放所有链接的必要资源
   //与流
   if (fis_stm != null) {
    fis_stm.close();

    if (fil_stm != null) {
     fil_stm.close();
    }
   }
  }
 }
}

输出结果

fil_stm.markSupported(): true