os.write( String.valueOf(i) ); } public final void println(long l) throws IOException { os.write( String.valueOf(l) ); } public final void println(float f) throws IOException { os.write( String.valueOf(f) ); } public final void println(double d) throws IOException { os.write( String.valueOf(d) ); } public final void println(char s[]) throws IOException { os.write(s, 0, s.length); } public final void println(String s) throws IOException { os.write(s); } public final void println(Object o) throws IOException { os.write( String.valueOf(o) ); } public final void clear() throws IOException { os.reset(); } public final void flush() throws IOException { os.flush(); } |