Package org.apache.jasper.runtime
Class BodyContentImpl
- java.lang.Object
- 
- java.io.Writer
- 
- javax.servlet.jsp.JspWriter
- 
- javax.servlet.jsp.tagext.BodyContent
- 
- org.apache.jasper.runtime.BodyContentImpl
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Closeable,- java.io.Flushable,- java.lang.Appendable,- java.lang.AutoCloseable
 
 public class BodyContentImpl extends BodyContent Write text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings. Provide support for discarding for the output that has been buffered.- Author:
- Rajiv Mordani, Jan Luehe
 
- 
- 
Field Summary- 
Fields inherited from class javax.servlet.jsp.JspWriterautoFlush, bufferSize, DEFAULT_BUFFER, NO_BUFFER, UNBOUNDED_BUFFER
 
- 
 - 
Constructor SummaryConstructors Constructor Description BodyContentImpl(JspWriter enclosingWriter)Constructor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Clear the contents of the buffer.voidclearBuffer()Clears the current contents of the buffer.voidclose()Close the stream, flushing it first.intgetBufferSize()This method returns the size of the buffer used by the JspWriter.java.io.ReadergetReader()Return the value of this BodyJspWriter as a Reader.intgetRemaining()This method returns the number of unused bytes in the buffer.java.lang.StringgetString()Return the value of the BodyJspWriter as a String.voidnewLine()Write a line separator.voidprint(boolean b)Print a boolean value.voidprint(char c)Print a character.voidprint(char[] s)Print an array of characters.voidprint(double d)Print a double-precision floating-point number.voidprint(float f)Print a floating-point number.voidprint(int i)Print an integer.voidprint(long l)Print a long integer.voidprint(java.lang.Object obj)Print an object.voidprint(java.lang.String s)Print a string.voidprintln()Terminate the current line by writing the line separator string.voidprintln(boolean x)Print a boolean value and then terminate the line.voidprintln(char x)Print a character and then terminate the line.voidprintln(char[] x)Print an array of characters and then terminate the line.voidprintln(double x)Print a double-precision floating-point number and then terminate the line.voidprintln(float x)Print a floating-point number and then terminate the line.voidprintln(int x)Print an integer and then terminate the line.voidprintln(long x)Print a long integer and then terminate the line.voidprintln(java.lang.Object x)Print an Object and then terminate the line.voidprintln(java.lang.String x)Print a String and then terminate the line.protected voidrecycle()This method shall "reset" the internal state of a BodyContentImpl, releasing all internal references, and preparing it for potential reuse by a later invocation ofPageContextImpl.pushBody(Writer).voidwrite(char[] buf)Write an array of characters.voidwrite(char[] cbuf, int off, int len)Write a portion of an array of characters.voidwrite(int c)Write a single character.voidwrite(java.lang.String s)Write a string.voidwrite(java.lang.String s, int off, int len)Write a portion of a String.voidwriteOut(java.io.Writer out)Write the contents of this BodyJspWriter into a Writer.- 
Methods inherited from class javax.servlet.jsp.tagext.BodyContentclearBody, flush, getEnclosingWriter
 - 
Methods inherited from class javax.servlet.jsp.JspWriterisAutoFlush
 
- 
 
- 
- 
- 
Constructor Detail- 
BodyContentImplpublic BodyContentImpl(JspWriter enclosingWriter) Constructor.- Parameters:
- enclosingWriter- The wrapped writer
 
 
- 
 - 
Method Detail- 
writepublic void write(int c) throws java.io.IOExceptionWrite a single character.- Overrides:
- writein class- java.io.Writer
- Parameters:
- c- The char to write
- Throws:
- java.io.IOException- Error writing to wrapped writer
 
 - 
writepublic void write(char[] cbuf, int off, int len) throws java.io.IOExceptionWrite 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. If the requested length is at least as large as the buffer, however, then this method will flush the buffer and write the characters directly to the underlying stream. Thus redundant DiscardableBufferedWriters will not copy data unnecessarily.- Specified by:
- writein class- java.io.Writer
- Parameters:
- cbuf- A character array
- off- Offset from which to start reading characters
- len- Number of characters to write
- Throws:
- java.io.IOException- Error writing to wrapped writer
 
 - 
writepublic void write(char[] buf) throws java.io.IOExceptionWrite an array of characters. This method cannot be inherited from the Writer class because it must suppress I/O exceptions.- Overrides:
- writein class- java.io.Writer
- Parameters:
- buf- Content to write
- Throws:
- java.io.IOException- Error writing to wrapped writer
 
 - 
writepublic void write(java.lang.String s, int off, int len) throws java.io.IOExceptionWrite a portion of a String.- Overrides:
- writein class- java.io.Writer
- Parameters:
- s- String to be written
- off- Offset from which to start reading characters
- len- Number of characters to be written
- Throws:
- java.io.IOException- Error writing to wrapped writer
 
 - 
writepublic void write(java.lang.String s) throws java.io.IOExceptionWrite a string. This method cannot be inherited from the Writer class because it must suppress I/O exceptions.- Overrides:
- writein class- java.io.Writer
- Parameters:
- s- String to be written
- Throws:
- java.io.IOException- Error writing to wrapped writer
 
 - 
newLinepublic void newLine() throws java.io.IOExceptionWrite a line separator. The line separator string is defined by the system propertyline.separator, and is not necessarily a single newline ('\n') character.
 - 
printpublic void print(boolean b) throws java.io.IOExceptionPrint a boolean value. The string produced byString.valueOf(boolean)write(int)
 - 
printpublic void print(char c) throws java.io.IOExceptionPrint a character. The character is translated into one or more bytes according to the platform's default character encoding, and these bytes are written in exactly the manner of thewrite(int)
 - 
printpublic void print(int i) throws java.io.IOExceptionPrint an integer. The string produced byString.valueOf(int)write(int)
 - 
printpublic void print(long l) throws java.io.IOExceptionPrint a long integer. The string produced byString.valueOf(long)write(int)
 - 
printpublic void print(float f) throws java.io.IOExceptionPrint a floating-point number. The string produced byString.valueOf(float)write(int)
 - 
printpublic void print(double d) throws java.io.IOExceptionPrint a double-precision floating-point number. The string produced byString.valueOf(double)write(int)
 - 
printpublic void print(char[] s) throws java.io.IOExceptionPrint an array of characters. The characters are converted into bytes according to the platform's default character encoding, and these bytes are written in exactly the manner of thewrite(int)
 - 
printpublic void print(java.lang.String s) throws java.io.IOExceptionPrint a string. If the argument isnullthen the string"null"is printed. Otherwise, the string's characters are converted into bytes according to the platform's default character encoding, and these bytes are written in exactly the manner of thewrite(int)
 - 
printpublic void print(java.lang.Object obj) throws java.io.IOExceptionPrint an object. The string produced by theString.valueOf(Object)write(int)
 - 
printlnpublic void println() throws java.io.IOExceptionTerminate the current line by writing the line separator string. The line separator string is defined by the system propertyline.separator, and is not necessarily a single newline character ('\n').
 - 
printlnpublic void println(boolean x) throws java.io.IOExceptionPrint a boolean value and then terminate the line. This method behaves as though it invokesprint(boolean)println()
 - 
printlnpublic void println(char x) throws java.io.IOExceptionPrint a character and then terminate the line. This method behaves as though it invokesprint(char)println()
 - 
printlnpublic void println(int x) throws java.io.IOExceptionPrint an integer and then terminate the line. This method behaves as though it invokesprint(int)println()
 - 
printlnpublic void println(long x) throws java.io.IOExceptionPrint a long integer and then terminate the line. This method behaves as though it invokesprint(long)println()
 - 
printlnpublic void println(float x) throws java.io.IOExceptionPrint a floating-point number and then terminate the line. This method behaves as though it invokesprint(float)println()
 - 
printlnpublic void println(double x) throws java.io.IOExceptionPrint a double-precision floating-point number and then terminate the line. This method behaves as though it invokesprint(double)println()
 - 
printlnpublic void println(char[] x) throws java.io.IOExceptionPrint an array of characters and then terminate the line. This method behaves as though it invokesprint(char[])println()
 - 
printlnpublic void println(java.lang.String x) throws java.io.IOExceptionPrint a String and then terminate the line. This method behaves as though it invokesprint(String)println()
 - 
printlnpublic void println(java.lang.Object x) throws java.io.IOExceptionPrint an Object and then terminate the line. This method behaves as though it invokesprint(Object)println()
 - 
clearpublic void clear() throws java.io.IOExceptionClear the contents of the buffer. If the buffer has been already been flushed then the clear operation shall throw an IOException to signal the fact that some data has already been irrevocably written to the client response stream.
 - 
clearBufferpublic void clearBuffer() throws java.io.IOExceptionClears the current contents of the buffer. Unlike clear(), this method will not throw an IOException if the buffer has already been flushed. It merely clears the current content of the buffer and returns.- Specified by:
- clearBufferin class- JspWriter
- Throws:
- java.io.IOException- Should not happen
 
 - 
closepublic void close() throws java.io.IOExceptionClose the stream, flushing it first. Once a stream has been closed, further write() or flush() invocations will cause an IOException to be thrown. Closing a previously-closed stream, however, has no effect.
 - 
getBufferSizepublic int getBufferSize() This method returns the size of the buffer used by the JspWriter.- Overrides:
- getBufferSizein class- JspWriter
- Returns:
- the size of the buffer in bytes, or 0 is unbuffered.
 
 - 
getRemainingpublic int getRemaining() Description copied from class:javax.servlet.jsp.JspWriterThis method returns the number of unused bytes in the buffer.- Specified by:
- getRemainingin class- JspWriter
- Returns:
- the number of bytes unused in the buffer
 
 - 
getReaderpublic java.io.Reader getReader() Return the value of this BodyJspWriter as a Reader. Note: this is after evaluation!! There are no scriptlets, etc in this stream.- Specified by:
- getReaderin class- BodyContent
- Returns:
- the value of this BodyJspWriter as a Reader
 
 - 
getStringpublic java.lang.String getString() Return the value of the BodyJspWriter as a String. Note: this is after evaluation!! There are no scriptlets, etc in this stream.- Specified by:
- getStringin class- BodyContent
- Returns:
- the value of the BodyJspWriter as a String
 
 - 
writeOutpublic void writeOut(java.io.Writer out) throws java.io.IOExceptionWrite the contents of this BodyJspWriter into a Writer. Subclasses are likely to do interesting things with the implementation so some things are extra efficient.- Specified by:
- writeOutin class- BodyContent
- Parameters:
- out- The writer into which to place the contents of this body evaluation
- Throws:
- java.io.IOException- Error writing to writer
 
 - 
recycleprotected void recycle() This method shall "reset" the internal state of a BodyContentImpl, releasing all internal references, and preparing it for potential reuse by a later invocation ofPageContextImpl.pushBody(Writer).Note, that BodyContentImpl instances are usually owned by a PageContextImpl instance, and PageContextImpl instances are recycled and reused. - See Also:
- PageContextImpl.release()
 
 
- 
 
-