OutputStreamWriter(OutputStream, Charset): This method is available in the java.io.OutputStreamWriter class of Java.
Syntax:
java.io.OutputStreamWriter.OutputStreamWriter(OutputStream out, Charset cs)
This method takes two arguments. This method creates an OutputStreamWriter that uses the given charset.
Parameters: Two parameters are required for this method.
out: An OutputStream.
cs: A charset.
Exceptions: NA
Approach
Java
import java.io.FileOutputStream;import java.io.IOException;import java.io.OutputStream;import java.io.OutputStreamWriter;import java.nio.charset.Charset;public class OutputStreamWriterOutputStreamWriter2 {public static void main(String[] args) throws IOException {OutputStream out = new FileOutputStream("D:\\hello.txt");OutputStreamWriter outputStreamWriter =new OutputStreamWriter(out, Charset.defaultCharset());System.out.println(outputStreamWriter);outputStreamWriter.close();}}
Output:
java.io.OutputStreamWriter@182decdb
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