Method Summary |
|
final public void | clear() Discard the output buffer. |
public void | clearBuffer() |
public void | close() Close the stream. |
protected void | ensureOpen() |
public void | flush() Flush the stream. |
final protected void | flushBuffer() Flush the output buffer to the underlying character stream, without
flushing the stream itself. |
public int | getRemaining() |
void | init(ServletResponse response, int sz, boolean autoFlush) |
protected void | initOut() |
public void | newLine() Write a line separator. |
public void | print(char s) Print an array of characters. |
public void | print(char c) Print a character. |
public void | print(double d) Print a double-precision floating-point number. |
public void | print(float f) Print a floating-point number. |
public void | print(int i) Print an integer. |
public void | print(long l) Print a long integer. |
public void | print(Object obj) Print an object. |
public void | print(String s) Print a string. |
public void | print(boolean b) Print a boolean value. |
public void | println() Terminate the current line by writing the line separator string. |
public void | println(char x) Print an array of characters and then terminate the line. |
public void | println(char x) Print a character and then terminate the line. |
public void | println(double x) Print a double-precision floating-point number and then terminate the
line. |
public void | println(float x) Print a floating-point number 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 integer and then terminate the line. |
public void | println(Object x) Print an Object and then terminate the line. |
public void | println(String x) Print a String and then terminate the line. |
public void | println(boolean x) Print a boolean value and then terminate the line. |
void | recycle() |
public void | write(char buf) Write an array of characters. |
public void | write(char cbuf, int off, int len) Write a portion of an array of characters.
Ordinarily this method stores characters from the given array into
this stream's buffer, flushing the buffer to the underlying stream as
needed. |
public void | write(int c) Write a single character. |
public void | write(String s) Write a string. |
public void | write(String s, int off, int len) Write a portion of a String. |