Method Summary |
|
public void | clear() Clear the contents of the buffer. |
public void | clearBuffer() Clears the current contents of the buffer. |
public void | close() Close the stream, flushing it first. |
public Reader | getReader() Return the value of this BodyJspWriter as a Reader. |
public int | getRemaining() |
public String | getString() Return the value of the BodyJspWriter as a String. |
public void | newLine() Write a line separator. |
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 value 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 integer and then terminate the line. |
public void | println(float x) Print a floating-point number 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(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. |
void | setWriter(Writer writer) Sets the writer to which all output is written. |
public void | write(int c) Write a single character. |
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(char[] buf) Write an array of characters. |
public void | write(String s, int off, int len) Write a portion of a String. |
public void | write(String s) Write a string. |
public void | writeOut(Writer out) Write the contents of this BodyJspWriter into a Writer. |