Package java.io
Class OutputStreamWriter
OutputStreamWriter(OutputStream out)
OutputStreamWriter(OutputStream out, String encoding_scheme)
Throws:
_INSERT_METHOD_SIGNATURE_HERE_
Description:
constructor OutputStreamWriter(OutputStream out):
This method constructs an OutputStreamWriter that uses the default (utf8) character encoding.
constructor OutputStreamWriter(OutputStream out, String encoding_scheme):
This method constructs an OutputStreamWriter that uses the specified encoding name.
Note that only "utf8" is supported as encoding_scheme. So this constructor is practically the same as the above.