| com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream com.lutris.appserver.server.httpPresentation.servlet.ServletHttpPresentationOutputStream
ServletHttpPresentationOutputStream | public class ServletHttpPresentationOutputStream extends HttpPresentationOutputStream (Code) | | HTTP request output stream writter for servlets.
This implements all methods that are defined in OutputStream as calles
to the servlet object, since we don't know which ones are implemented by
ServletOutputStream.
See Also: javax.servlet.ServletOutputStream |
Method Summary | |
public void | flush() | public void | print(String s) Prints the string provided. | public void | print(boolean b) Prints the boolean provided. | public void | print(char c) | public void | print(int i) Prints the integer provided. | public void | print(long l) Prints the long provided. | public void | print(float f) Prints the float provided. | public void | print(double d) Prints the double provided. | public void | println() Prints a CRLF. | public void | println(String s) Prints the string provided, followed by a CRLF. | public void | println(boolean b) Prints the boolean provided, followed by a CRLF. | public void | println(char c) | public void | println(int i) Prints the integer provided, followed by a CRLF. | public void | println(long l) Prints the long provided, followed by a CRLF. | public void | println(float f) Prints the float provided, followed by a CRLF. | public void | println(double d) Prints the double provided, followed by a CRLF. | public void | write(int b) | public void | write(byte b) | public void | write(byte b, int off, int len) |
print | public void print(boolean b) throws IOException(Code) | | Prints the boolean provided.
exception: IOException - if an I/O error has occurred. |
println | public void println(boolean b) throws IOException(Code) | | Prints the boolean provided, followed by a CRLF.
exception: IOException - if an I/O error has occurred. |
println | public void println(int i) throws IOException(Code) | | Prints the integer provided, followed by a CRLF.
exception: IOException - if an I/O error has occurred |
println | public void println(long l) throws IOException(Code) | | Prints the long provided, followed by a CRLF.
exception: IOException - if an I/O error has occurred |
println | public void println(float f) throws IOException(Code) | | Prints the float provided, followed by a CRLF.
exception: IOException - if an I/O error has occurred |
println | public void println(double d) throws IOException(Code) | | Prints the double provided, followed by a CRLF.
exception: IOException - if an I/O error has occurred |
|
|