Returns a ServletOutputStream suitable for writing binary data in the response. The servlet container does not encode the binary data. Calling flush() on the ServletOutputStream commits the response. Either this method or #getWriter may be called to write the body, not both. @re
()
| 102 | * @see #getWriter |
| 103 | */ |
| 104 | ServletOutputStream getOutputStream() throws IOException; |
| 105 | |
| 106 | /** |
| 107 | * Returns a <code>PrintWriter</code> object that can send character text to the client. The |
no outgoing calls