ServletOutputStream object is normally retrieved
via the ServletResponse.getOutputStream() method.
This is an abstract class that the servlet container implements.
Subclasses of this class
must implement the java.io.OutputStream.write(int)
method.
ServletResponseString to the client,
without a carriage return-line feed (CRLF)
character at the end.
s the String to send to the clientjava.io.IOException if an input or output exception occurredboolean value to the client,
with no carriage return-line feed (CRLF)
character at the end.
b the boolean value
to send to the clientjava.io.IOException if an input or output exception occurredc the character to send to the clientjava.io.IOException if an input or output exception occurredi the int to send to the clientjava.io.IOException if an input or output exception occurredlong value to the client,
with no carriage return-line feed (CRLF) at the end.
l the long value
to send to the clientjava.io.IOException if an input or output exception
occurredfloat value to the client,
with no carriage return-line feed (CRLF) at the end.
f the float value
to send to the clientjava.io.IOException if an input or output exception occurreddouble value to the client,
with no carriage return-line feed (CRLF) at the end.
d the double value
to send to the clientjava.io.IOException if an input or output exception occurredjava.io.IOException if an input or output exception occurredString to the client,
followed by a carriage return-line feed (CRLF).
s the String to write to the clientjava.io.IOException if an input or output exception occurredboolean value to the client,
followed by a
carriage return-line feed (CRLF).
b the boolean value
to write to the clientjava.io.IOException if an input or output exception occurredc the character to write to the clientjava.io.IOException if an input or output exception occurredi the int to write to the clientjava.io.IOException if an input or output exception occurredlong value to the client, followed by a
carriage return-line feed (CRLF).
l the long value to write to the clientjava.io.IOException if an input or output exception occurredfloat value to the client,
followed by a carriage return-line feed (CRLF).
f the float value to write to the clientjava.io.IOException if an input or output exception occurreddouble value to the client,
followed by a carriage return-line feed (CRLF).
d the double value
to write to the clientjava.io.IOException if an input or output exception occurred