Home »
Java programming language
Java FilterInputStream markSupported() Method with Example
FilterInputStream Class markSupported() method: Here, we are going to learn about the markSupported() method of FilterInputStream Class with its syntax and example.
Submitted by Preeti Jain, on April 02, 2020
FilterInputStream Class markSupported() method
- markSupported() method is available in java.io package.
- markSupported() method is used to check whether this FilterInputStream supports mark() , reset() or not.
- markSupported() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- markSupported() method does not throw an exception at the time of checking supporting methods.
Syntax:
public boolean markSupported();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of the method is boolean, it returns true when this stream supports mark() method otherwise it returns false.
Example:
// Java program to demonstrate the example
// of boolean markSupported() method of
// FilterInputStream
import java.io.*;
public class MarkSupportedOfFIS {
public static void main(String[] args) throws Exception {
FileInputStream fis_stm = null;
FilterInputStream fil_stm = null;
try {
// Instantiates FileInputStream and
// FilterInputStream
fis_stm = new FileInputStream("D:\\includehelp.txt");
fil_stm = new BufferedInputStream(fis_stm);
// By using markSupported() method is to
// check whether this stream fil_stm supports
// mark() method or not
boolean status = fil_stm.markSupported();
System.out.println("fil_stm.markSupported(): " + status);
} catch (Exception ex) {
System.out.println(ex.toString());
} finally {
// with the help of this block is to
// free all necessary resources linked
// with the stream
if (fis_stm != null) {
fis_stm.close();
if (fil_stm != null) {
fil_stm.close();
}
}
}
}
}
Output
fil_stm.markSupported(): true