cookies

17
Cookies 05/10/2022 1 R.V.S.Lalitha.,M.Tech(Ph.D)

Upload: vamsitricks

Post on 20-Dec-2014

133 views

Category:

Documents


0 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 1

Cookies

Page 2: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 2

Cookie

• Class Name: javax.servlet.http.Cookie• Super class: java.lang.Object• Immediate subclasses: None• Interfaces implemented: java.lang.Cloneable

Page 3: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 3

Purpose

• The Cookie provides an easy way for servlets to read, create and manipulate HTTP-style cookies, which allow servlets to store small amounts of data on the client.

• Cookies are generally used for session tracking or storing small amounts of user-specific configuration information.

Page 4: Cookies

04/10/2023 4

Class summarypublic class Cookie implements java.lang.Cloneable {//constructorpublic Cookie(String name,String value)l//instance methodspublic Object Clone();public String getComment();public String getDomain();public String getMaxAge();public String getName();public String getPath();public String getSecure();public String getValue();public String getVersion();

R.V.S.Lalitha.,M.Tech(Ph.D)

Page 5: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 5

Class summary

public void setComment(String purpose);public void setDomain(String pattern);public void setMaxAge(int Expiry);public void setPath(String uri);public void setSecure(boolean flag);public void setDomain(String pattern);public void setValue(String newValue);public void setVersion(int v);}

Page 6: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 6

Class summary• Cookie()Constructs a new cookie with a initial name and value• clone()To return a copy of object(duplicate cookie)• getComment()Returns comments associated with cookie• getDomain()Returns domain limitation associated with cookie• getMaxAge()Returns max age allowed for this cookie• getPathReturns path limitation for this servlet• getSecure()Returns true if the cookie requires a secure connection, false otherwise

Page 7: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 7

• getName() Returns name of the cookie• getValue()Returns value of the cookie in String format• getVersion()Returns version of the cookie• setComment()Sets the comment field of the cookie• setDomain()Specifies domain restriction pattern• setMaxAge()Specifies the maximum age of the cookie• setPath()Specifies path for cookie• setSecure()The secure flag indicates whether the cookie should be sent only over a secure channel, such

as SSL• setValue()Assigns new value to a cookie• setVersion()Servlets can send and receive cookies formatted to match either Netscape persistent cookies or

the newer

Page 8: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 8

Sample servlet to implement cookie

• cookiesform.html<html><head><title>Cookies</title></head><body><form action="http://localhost:8080/lalitha/cookie">Enter name<input type="text" name="t1"/><br>Enter qualification<input type="text" name="t2"/><br><input type="submit" name="submit" value="Submit"/></form></body></html>

Page 9: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 9

• cookie.javaimport java.io.*;import javax.servlet.*;import javax.servlet.http.*;public class cookie extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException { res.setContentType("text/html"); PrintWriter out = res.getWriter();String name=req.getParameter("t1");String qual=req.getParameter("t2");Cookie c=new Cookie(name,qual);res.addCookie(c);out.println("cookies are added");}}

Page 10: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 10

• cookieview.javaimport java.io.*;import javax.servlet.*;import javax.servlet.http.*;public class cookieview extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException { res.setContentType("text/html"); PrintWriter out = res.getWriter();Cookie[] c=req.getCookies();for(int i=0;i<c.length;i++){out.println(c[i].getName());}}}

Page 11: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 11

• web.xml<web<servlet> <servlet-name>cookie</servlet-name> <servlet-class>cookie</servlet-class> </servlet>

<servlet-mapping> <servlet-name>cookie</servlet-name> <url-pattern>/cookie</url-pattern> </servlet-mapping><servlet><servlet-name>cookieview</servlet-name> <servlet-class>cookieview</servlet-class> </servlet>

<servlet-mapping> <servlet-name>cookieview</servlet-name> <url-pattern>/cookieview</url-pattern> </servlet-mapping></web-app>

Page 12: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 12

Compiling servlets..

C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\lalitha\WEB-INF\classes>javac -classpath "C:\Program Files\Apache Software oundation\Tomcat 5.5\common\lib\servlet-api.jar" cookie.java

C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\lalitha\WEB-INF\classes>javac -classpath "C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\lib\servlet-api.jar" cookieview.java

Page 13: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 13

Running Html file

• C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\lalitha\cookiesform.html

Page 14: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 14

Page 15: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 15

Page 16: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 16

Page 17: Cookies

04/10/2023 R.V.S.Lalitha.,M.Tech(Ph.D) 17