By: Rajan in JSP Tutorials on 2006年12月11日 [フレーム]
Cookies are a way of storing user specific data in their own computers. For example if you want to identify your site's visitor and greet him by his name the next time he visits your computer, you can use a cookie. So the first time the user visits you can provide a field to enter his name and then store this information as a cookie in his computer. The next time he visits your site, you can check whether a cookie by that name is stored in his computer and if it is stored then you can retrieve this name and greet him by saying 'Welcome back xxxxxxx'.
This Sample Java Program shows how to check whether a cookie by the specified name exists in the PC and if exists then print the value set for that Cookie. This code can be embedded in your JSP or Java Bean or Servlets.
try{
URL url= new URL(args[0]);
URLConnection urlConnection = url.openConnection();
for(int i=0;;i++)
{
String header=urlConnection.getHeaderField(i);
if(header==null)
break;
if("set-cookie".equalsIgnoreCase(urlConnection.getHeaderFieldKey(i)))
System.out.println(header);
}
}catch(MalformedURLException mue){}
catch(IOException ioe){}
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Most Viewed Articles (in JSP )
Show a calendar for user input in JSP
Encrypting Passwords in Tomcat using Servlets
JSP Tags for SQL to connect to a database
Steps to get a Free SSL certificate for your Tomcat
Uploading a file to a server using JSP
Server Side Programming using JSP
Latest Articles (in JSP)
Show a calendar for user input in JSP
Steps to get a Free SSL certificate for your Tomcat
Encrypting Passwords in Tomcat using Servlets
JSP Tags for SQL to connect to a database
Uploading a file to a server using JSP
Uploading an Image to a Database using JSP
A JSP page that gets properties from a bean
Scriptlets and Expressions in JSP
The taglib, tag, include, attribute and the variable Directive in JSP
Show a calendar for user input in JSP
Encrypting Passwords in Tomcat using Servlets
Steps to get a Free SSL certificate for your Tomcat
JSP Tags for SQL to connect to a database
Uploading an Image to a Database using JSP
Uploading a file to a server using JSP
© 2023 Java-samples.com
Tutorial Archive: Data Science React Native Android AJAX ASP.net C C++ C# Cocoa Cloud Computing EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Trends WebServices XML Office 365 Hibernate
Latest Tutorials on: Data Science React Native Android AJAX ASP.net C Cocoa C++ C# EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Cloud Computing WebServices XML Office 365 Hibernate