Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class OutputStreamWriter extends Writer {
   // Public Constructors
      public OutputStreamWriter(OutputStream out, String enc) throws UnsupportedEncodingException;
      public OutputStreamWriter(OutputStream out);
   // Public Instance Methods
      public void close() throws IOException;  // Defines Writer.close()
      public void flush() throws IOException;  // Defines Writer.flush()
      public String getEncoding();
      public void write(int c) throws IOException;  // Overrides Writer.write()
      public void write(char[] cbuf, int off, int len) throws IOException;  // Defines Writer.write()
      public void write(String str, int off, int len) throws IOException;  // Overrides Writer.write()
}