|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
你通过从书的数量和开发周期及运行速度来证明:net和ruby要比java简单。 Cookie是一小块能够嵌进HTTP哀求和呼应中的数据,它在服务器上发生,并作为呼应头域的一部分前往用户。扫瞄器收到包括Cookie的呼应后,会把Cookie的内容用“关头字/值”对的情势写进到一个客户端专为寄存Cookie的文本文件中。扫瞄器会把Cookie及随后发生的哀求发给不异的服务器,服务器能够再次读取Cookie中存Cookie能够举行无效期设置,过时的Cookie不会发送给服务器。
ServletAPI供应了一个Cookie类,封装了对Cookie的一些操纵。Servlet能够创立一个新的Cookie,设置它的关头字、值及无效期等属性,然后把Cookie设置在HttpServletResponse对象中发还扫瞄器,还能够从HttpServletRequest对象中猎取Cookie。
编程思绪:Cookie在实践的Servlet编程中是很普遍使用,上面是一个从Servlet中猎取Cookie信息的例子。
ShowCookies.java的源代码以下:
importjavax.servlet.*;
importjavax.servlet.http.*;
/**
*<p>Thisisasimpleservletthatdisplaysallofthe
*Cookiespresentintherequest
*/
publicclassShowCookiesextendsHttpServlet
{
publicvoiddoGet(HttpServletRequestreq,HttpServletResponseresp)
throwsServletException,java.io.IOException
{
//Setthecontenttypeoftheresponse
resp.setContentType("text/html;charset=gb2312");
//GetthePrintWritertowritetheresponse
java.io.PrintWriterout=resp.getWriter();
//Getanarraycontainingallofthecookies
Cookiecookies[]=req.getCookies();
//Writethepageheader
out.println("<html>");
out.println("<head>");
out.println("<title>ServletCookieInformation</title>");
out.println("</head>");
out.println("<body>");
if((cookies==null)||(cookies.length==0)){
out.println("没有cookies");
}
else{
out.println("<center><h1>呼应动静中的Cookies信息</h1>");
//Displayatablewithalloftheinfo
out.println("<tableborder>");
out.println("<tr><th>Name</th><th>Value</th>"+"<th>Comment</th><th>MaxAge</th></tr>");
for(inti=0;i<cookies.length;i++){
Cookiec=cookies[i];
out.println("<tr><td>"+c.getName()+"</td><td>"+
c.getValue()+"</td><td>"+c.getComment()+"</td><td>"+c.getMaxAge()+"</td></tr>");
}
out.println("</table></center>");
}
//Wrapup
out.println("</body>");
out.println("</html>");
out.flush();
}
/**
*<p>Initializetheservlet.Thisiscalledoncewhenthe
*servletisloaded.Itisguaranteedtocompletebeforeany
*requestsaremadetotheservlet
*@paramcfgServletconfigurationinformation
*/
publicvoidinit(ServletConfigcfg)
throwsServletException
{
super.init(cfg);
}
/**
*<p>Destroytheservlet.Thisiscalledoncewhentheservlet
*isunloaded.
*/
publicvoiddestroy()
{
super.destroy();
}
}
注重:Cookie举行服务器端与客户真个双向交换,以是它触及到平安性成绩。
首先java功能强大的背后是其复杂性,就拿web来说,当今流行的框架有很多,什么struts,spring,jQuery等等,而这无疑增加了java的复杂性。 |
|