InterviewSolution
Saved Bookmarks
| 1. |
What Are The Uses Of Servletresponse Interface? |
|
Answer» ServletResponse ALLOWS the servlet to set the content length and MIME type of that RESPONSE. It provides an output STREAM, ServletOutputStream and a Writer through which the servlet can send data. ServletResponse allows the servlet to set the content length and MIME type of that response. It provides an output stream, ServletOutputStream and a Writer through which the servlet can send data. |
|