Method Summary |
|
public boolean | checkError() Flush the stream and check its error state. |
public void | close() Close the stream. |
public void | flush() Flush the stream. |
public void | print(boolean b) Print a boolean value. |
public void | print(char c) Print a character. |
public void | print(int i) Print an integer. |
public void | print(long l) Print a long integer. |
public void | print(float f) Print a floating point number. |
public void | print(double d) Print a double-precision floating point number. |
public void | print(char s) Print an array of characters. |
public void | print(String s) Print a string. |
public void | print(Object obj) Print an object. |
public void | println() Terminate the current line by writing the line separator string. |
public void | println(boolean x) Print a boolean and then terminate the line. |
public void | println(char x) Print a character and then terminate the line. |
public void | println(int x) Print an integer and then terminate the line. |
public void | println(long x) Print a long and then terminate the line. |
public void | println(float x) Print a float and then terminate the line. |
public void | println(double x) Print a double and then terminate the line. |
public void | println(char x) Print an array of characters and then terminate the line. |
public void | println(String x) Print a String and then terminate the line. |
public void | println(Object x) Print an Object and then terminate the line. |
protected void | setError() Set the error state of the stream to true . |
public void | write(int b) Write the specified byte to this stream. |
public void | write(byte buf, int off, int len) Write len bytes from the specified byte array starting at
offset off to this stream. |