What are cookies and how will you use them?
Answers were Sorted based on User's Feedback
Answer / ravikiran.chd
cookies are the small server side components,which are used
to transfer small amount of client data
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / sandeep m
Cookie is a key value pair stored by server at client side
for session tracking any other related use.
Cookie class is available in javax.servlet.http package.
cookies can be retrieved from
javax.servlet.http.HttpServletRequest object using
getCookies() method.
getCookies() returns Cookie[] array object. Any number of
Cookies can be stored on response object.
cookie can be added to
javax.servlet.http.HttpServletResponse object. using
resp.addCookie(new Cookie("key","value"));
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / usha
cookie is small piece of data set by the server on the
client ,for session tracking. When the server sets the
cookie as part of the response,the client will send the
cookie back to the server when it sends the next request.
Cookie is class in http package.Create Cookie object and
send it as part of response using
response.addCookie(cookie object)
can access the cookie using
request.getCookie();
| Is This Answer Correct ? | 0 Yes | 2 No |
Explain the servlet context.
How to pass JavaBeans data to JSP using Servlets?
I have a requirement Here we have a ResultSet object that will contain 50 records i need to print those recors in to a webpage(i.e; view according to MVC architectures that mybe servlet or jsp) . Here i need to print the records 10 per page that is 1 to 10 in page one and 11 to 20 in page two like remaining will be appeared in other pages we need to display those page numbers whenever we click on that page number we will go to that page and display 10 records like we will display 5 pages it is like this << 1 2 3 4 5 next >>
How can you create a session in servlet?
What are the ways to handle multi-threading in servlets?
How to rectify errors in java servlet while compilation?
What are some advantages of storing session state in cookies?
What are different ways for authentication of servlet?
Are Servlets by default thread safe or not? thanks in advance regards Sudhakar
Can servlet have a constructor ?
how JSP can extend servlet or interface ...?
What is Servlet Context?