public final void print(float f) throws IOException { os.write( String.valueOf(f) ); } public final void print(double d) throws IOException { os.write( String.valueOf(d) ); } public final void print(char s[]) throws IOException { os.write( String.valueOf(s) ); } public final void print(String s) throws IOException { os.write( s ); } public final void print(Object o) throws IOException { os.write( String.valueOf(o) ); } public final void println() throws IOException { os.write( "\n\r" ); } public final void println(boolean b) throws IOException { os.write( String.valueOf(b) ); } public final void println(char ch) throws IOException { os.write( String.valueOf(ch) ); } public final void println(int i) throws IOException { |