The JSP Files (part 3): Black Light And White Rabbits - A Positive Response
(Page 7 of 7 )
Another interesting object, and one that comes in handy in the oddest places, is the Response object. As opposed to the Request object, which is used to retrieve information (come back next time for more on this), the Response object is typically used to send information to the browser; this information could include HTTP headers, redirection URLs, cookies and a variety of other items.
Since the Response object is an "implicit" object (so called because you do not need to explicitly create an instance of the object when you want to use it), you can begin using it immediately in a JSP document. The following example demonstrates using it to turn off caching via the "Cache-Control" header.
<%
response.setHeader("Cache-Control","no-cache");
%>
You can also use it to redirect the client to another
URL.
<%
response.setHeader("Location", "error.html");
%gt;
You can use the sendRedirect() method to accomplish
something similar - remember to use an absolute URL here.
<%
response.sendRedirect("http://my.server.com/error.html");
%>
You can set the MIME type of a document with the
setContentType() method.
<%
response.setContentType("image/jpeg");
%>
and even set a cookie with the addCookie() method -
more on this as we progress through this series.
That's about all we have time for. Next time, we'll be exploring the JSP Response object, used to process data from HTML forms...so you don't want to miss that one!
Note: All examples in this article have been tested on Linux/i586 with Tomcat 3.2 and JServ 1.1. Examples are illustrative only, and are not meant for a production environment. YMMV!
| DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware. |