OutputStreamWriter close() in Java

close(): This method is available in the java.io.OutputStreamWriter class of Java.

Syntax:

void java.io.OutputStreamWriter.close() throws IOException

This method closes the stream, flushing it first.

Note:

1. Once the stream has been closed, further write() or flush() invocations will cause an IOException to be thrown.

2. Closing a previously closed stream has no effect.

Parameters: NA

Returns: NA

Throws:

IOException - If an I/O error occurs

Approach

Java

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;

public class OutputStreamWriterclose {
    public static void main(String[] args) throws IOException {

        OutputStream out = new FileOutputStream("D:\\hello.txt");
        OutputStreamWriter outputStreamWriter =
new OutputStreamWriter(out);

        outputStreamWriter.close();
        System.out.println("Successfully closed");
    }
}

Output:

Successfully closed


Some other methods of OutputStreamWriter

close(): This method closes the stream, flushing it first.

flush(): This method flushes the stream.

getEncoding(): This method returns the name of the character encoding being used by this stream.

OutputStreamWriter(OutputStream): This method creates an OutputStreamWriter that uses the default character encoding.

OutputStreamWriter(OutputStream, Charset): This method creates an OutputStreamWriter that uses the given charset.

OutputStreamWriter(OutputStream, CharsetEncoder): This method creates an OutputStreamWriter that uses the given charset encoder.

OutputStreamWriter(OutputStream, String): This method creates an OutputStreamWriter that uses the named charset.

write(int): This method writes a single character.

write(char[], int, int): This method writes a portion of an array of characters.

write(String, int, int): This method writes a portion of a string.

No comments:

Post a Comment