public final void write(int ch) throws IOException { os.write( String.valueOf(ch) ); } public final void write(char buf[]) throws IOException { os.write( String.valueOf(buf) ); } public final void write(String s) throws IOException { os.write( s ); } public final void write(String s, int off, int len) throws IOException { os.write( s, off, len ); } public final void newLine() throws IOException { os.write( "\n\r" ); } public final void print(boolean b) throws IOException { os.write( String.valueOf(b) ); } public final void print(char ch) throws IOException { os.write( String.valueOf(ch) ); } public final void print(int i) throws IOException { os.write( String.valueOf(i) ); } public final void print(long l) throws IOException { os.write( String.valueOf(l) ); } |