|
How to use cookies in a servlet |
|
|
This J2EE tip demonstrates use of cookie in a servlet. Cookies are small bits of
textual information that a Web server sends to a browser and that the browser
returns unchanged when visiting the same Web site or domain later. By having the
server read information it sent the client previously, the site can provide
visitors with a number of conveniences like Identifying a user during an e-commerce
session, avoiding username and password, customizing a site etc.
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class FCookie extends HttpServlet {
public void doGet ( HttpServletRequest request, HttpServletResponse response )
throws ServletException, IOException {
PrintWriter out;
// Set content type and other response header fields first
response.setContentType("text/html");
// Write the data of the response
out = response.getWriter();
// Create a cookie
Cookie c1 = new Cookie("CName1","Cookie Value1");
Cookie c2 = new Cookie("CName2","Cookie Value2");
response.addCookie(c1);
response.addCookie(c2);
out.println("<HTML><HEAD><TITLE>");
out.println(" This output is generated from a Servlet");
out.println("</TITLE></HEAD><BODY>");
out.println(" This has set 2 Cookies");
out.println("</BODY></HTML>");
out.close();
}
}
|
Related Tips
|
Page 1 of 0 ( 0 comments )
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.