Constructor OutputStreamWriter(OutputStream out, Charset cs)
Member of: java.io.OutputStreamWriter
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 OutputStreamWriter writer = new OutputStreamWriter(os, UTF8);
2 OutputStreamWriter writer = new OutputStreamWriter(out, UTF);
3 PrintWriter pw = new PrintWriter(new OutputStreamWriter(os, cs), true);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.