Home »
Java programming language
Java SequenceInputStream close() Method with Example
SequenceInputStream Class close() method: Here, we are going to learn about the close() method of SequenceInputStream Class with its syntax and example.
Submitted by Preeti Jain, on April 27, 2020
SequenceInputStream Class close() method
- close() method is available in java.io package.
- close() method is used to close this SequenceInputStream and free all system resources linked with the 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 while performing.
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
// SequenceInputStream
import java.io.*;
public class CloseOfSIS {
public static void main(String[] args) {
String str1 = "Java";
String str2 = "Programming..";
// Create two byte array
byte[] b_arr1 = str1.getBytes();
byte[] b_arr2 = str2.getBytes();
// Instantiates two ByteArrayInputStream
ByteArrayInputStream bais_1 = new ByteArrayInputStream(b_arr1);
ByteArrayInputStream bais_2 = new ByteArrayInputStream(b_arr2);
// Instantiates SequenceInputStream
SequenceInputStream se_stm = new SequenceInputStream(bais_1, bais_2);
try {
// Loop to read available input
for (int i = 0; i < 15; i++) {
// By using read() method is to read integer and
// convert it into char
char ch = (char) se_stm.read();
System.out.print("se_stm.read(): " + ch);
System.out.println();
}
// By using close() method is to
// close all the streams
bais_1.close();
bais_1.close();
se_stm.close();
System.out.println("Streams Shutdown.....");
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
Output
se_stm.read(): J
se_stm.read(): a
se_stm.read(): v
se_stm.read(): a
se_stm.read(): P
se_stm.read(): r
se_stm.read(): o
se_stm.read(): g
se_stm.read(): r
se_stm.read(): a
se_stm.read(): m
se_stm.read(): m
se_stm.read(): i
se_stm.read(): n
se_stm.read(): g
Streams Shutdown.....