|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Java编译的是字节码,跟C++相反,启动不够快,效率不够高,难以精确控制内存,但是优点是编程比C++容易,代码比较安全但是容易留下性能隐患,跨平台靠字节码在各个平台复制(一处编译到处调试) 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();
}
}</p>
认真的记,感觉很紧张根本就没有时间和能力,来对技术知识点进行思考。这样课下就只能对知识进行简单的理解,其实简单的理解就是记忆课堂上讲的知识点, |
|