Class java.io.OutputStreamWriter (1.1)


public class OutputStreamWriter extends Writer {
  // Public Constructors
    public OutputStreamWriter(OutputStream out);
    public OutputStreamWriter(OutputStream out, String enc) throws UnsupportedEncodingException;
    public OutputStreamWriter(OutputStream out, int sz) throws IllegalArgumentException;
    public OutputStreamWriter(OutputStream out, String enc, int sz) throws UnsupportedEncodingException, IllegalArgumentException;
    public OutputStreamWriter(OutputStream out, CharToByteConverter ctb);
    public OutputStreamWriter(OutputStream out, CharToByteConverter ctb, int sz) throws IllegalArgumentException;
  // Public Instance Methods
    public void close( ) throws IOException;  // Defines Writer.close( )
    public void flush( ) throws IOException;  // Defines Writer.flush( )
    public String getCharacterEncoding( ) throws IOException;
    public void write(int c) throws IOException;  // Overrides Writer.write( )
    public void write(char[ ] cbuf, int off, int len) throws IOException, ConversionBufferFullException;  // Defines Writer.write( )
    public void write(String str, int off, int len) throws IOException;  // Overrides Writer.write( )
}