What information that the ServletResponse interface gives the servlet methods for replying to the client?

It Allows the servlet to set the content length and MIME type of the reply. Provides an output stream, ServletOutputStream and a Writer through which the servlet can send the reply data.

Showing Answers 1 - 2 of 2 Answers

chinnu

  • Nov 25th, 2006
 

methods:response.setContentType();//for setting the content in servletresponse.send Redirect();//for communicating the servletresponse.setHeader("Pragama/","nocahe");//controlling cahe

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions