|
EAF 7.6 Implementation | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.OutputStream
com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
com.lutris.appserver.server.httpPresentation.servlet.ServletHttpPresentationOutputStream
public class ServletHttpPresentationOutputStream
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.
ServletOutputStream
Constructor Summary | |
---|---|
protected |
ServletHttpPresentationOutputStream(ServletHttpPresentationResponse response,
javax.servlet.ServletOutputStream outputStream)
Construct an object for accessing a servlet output stream. |
Method Summary | |
---|---|
void |
flush()
|
void |
print(boolean b)
Prints the boolean provided. |
void |
print(char c)
|
void |
print(double d)
Prints the double provided. |
void |
print(float f)
Prints the float provided. |
void |
print(int i)
Prints the integer provided. |
void |
print(long l)
Prints the long provided. |
void |
print(java.lang.String s)
Prints the string provided. |
void |
println()
Prints a CRLF. |
void |
println(boolean b)
Prints the boolean provided, followed by a CRLF. |
void |
println(char c)
|
void |
println(double d)
Prints the double provided, followed by a CRLF. |
void |
println(float f)
Prints the float provided, followed by a CRLF. |
void |
println(int i)
Prints the integer provided, followed by a CRLF. |
void |
println(long l)
Prints the long provided, followed by a CRLF. |
void |
println(java.lang.String s)
Prints the string provided, followed by a CRLF. |
void |
write(byte[] b)
|
void |
write(byte[] b,
int off,
int len)
|
void |
write(int b)
|
Methods inherited from class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream |
---|
close |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected ServletHttpPresentationOutputStream(ServletHttpPresentationResponse response, javax.servlet.ServletOutputStream outputStream)
Method Detail |
---|
public void print(java.lang.String s) throws java.io.IOException
print
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void print(boolean b) throws java.io.IOException
print
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurred.public void print(char c) throws java.io.IOException
print
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
public void print(int i) throws java.io.IOException
print
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void print(long l) throws java.io.IOException
print
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void print(float f) throws java.io.IOException
print
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void print(double d) throws java.io.IOException
print
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void println() throws java.io.IOException
println
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void println(java.lang.String s) throws java.io.IOException
println
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void println(boolean b) throws java.io.IOException
println
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurred.public void println(char c) throws java.io.IOException
println
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
public void println(int i) throws java.io.IOException
println
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void println(long l) throws java.io.IOException
println
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void println(float f) throws java.io.IOException
println
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void println(double d) throws java.io.IOException
println
in class com.lutris.appserver.server.httpPresentation.HttpPresentationOutputStream
java.io.IOException
- if an I/O error has occurredpublic void write(int b) throws java.io.IOException
write
in class java.io.OutputStream
java.io.IOException
public void write(byte[] b) throws java.io.IOException
write
in class java.io.OutputStream
java.io.IOException
public void write(byte[] b, int off, int len) throws java.io.IOException
write
in class java.io.OutputStream
java.io.IOException
public void flush() throws java.io.IOException
flush
in interface java.io.Flushable
flush
in class java.io.OutputStream
java.io.IOException
|
EAF 7.6 Implementation | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |