Home »
Java programming language
Java FilterOutputStream close() Method with Example
FilterOutputStream Class close() method: Here, we are going to learn about the close() method of FilterOutputStream Class with its syntax and example.
Submitted by Preeti Jain, on April 02, 2020
FilterOutputStream Class close() method
- close() method is available in java.io package.
- close() method is used to close this stream and free all system resources linked with this stream.
- close() 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.
- close() method may throw an exception at the time of closing the stream.
IOException: This exception may throw when getting any input/output error.
Syntax:
public void close();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of the method is void, it returns nothing.
Example:
// Java program to demonstrate the example
// of void close() method of FilterInputStream
import java.io.*;
public class CloseOfFOS {
public static void main(String[] args) throws Exception {
FileInputStream fis_stm = null;
FilterInputStream fil_stm = null;
FileOutputStream fos_stm = null;
FilterOutputStream fol_stm = null;
int count = 0;
try {
// Instantiates FileOutputStream and
// FilterOutputStream
fos_stm = new FileOutputStream("D:\\includehelp.txt");
fol_stm = new BufferedOutputStream(fos_stm);
// By using close() method is to
// close the stream fol_stm
fol_stm.close();
// when we call write() method
// after closing the fol_stm stream
// will result an exception
fol_stm.write(97);
// By using flush() method is to
// write bytes out to the basic
// output stream
fol_stm.flush();
// Instantiates FileInputStream and
// FilterInputStream
fis_stm = new FileInputStream("C:\\Users\\Preeti Jain\\Desktop\\programs\\includehelp.txt");
fil_stm = new BufferedInputStream(fis_stm);
// Loop to read until available
// bytes left
while ((count = fil_stm.read()) != -1) {
// Display corresponding bytes value
char ch = (char) count;
// Display value of b
System.out.println("ch: " + ch);
}
} 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();
if (fol_stm != null) {
fol_stm.close();
if (fos_stm != null) {
fos_stm.close();
}
}
}
}
}
}
}
Output
java.io.IOException: Stream Closed