FileDocCategorySizeDatePackage
SystemOutputStream.javaAPI DocJ2ME MIDP 2.0825Thu Nov 07 12:02:20 GMT 2002com.sun.midp.io

SystemOutputStream

public class SystemOutputStream extends OutputStream
Standard output stream for the System.out diagnostics messages.

Fields Summary
Constructors Summary
Methods Summary
private static native voidputchar(char c)
native interface to output a single character to standard output.

param
c the char to output.

public synchronized voidwrite(int c)
Writes the specified byte to this output stream.

param
c the byte.
exception
IOException if an I/O error occurs.

        putchar((char)c);