程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> Java Servlet 編程及應用之Cookie的使用方法

Java Servlet 編程及應用之Cookie的使用方法

編輯:關於JSP

Cookie 是一小塊可以嵌入HTTP 請求和響應中的數據,它在服務器上產生,並作為響應頭域的一部分返回用戶。浏覽器收到包含Cookie 的響應後,會把Cookie 的內容用“關鍵字/值” 對的形式寫入到一個客戶端專為存放Cookie 的文本文件中。浏覽器會把Cookie 及隨後產生的請求發給相同的服務器,服務器可以再次讀取Cookie 中存Cookie 可以進行有效期設置,過期的Cookie 不會發送給服務器。

Servlet API 提供了一個Cookie 類,封裝了對Cookie 的一些操作。Servlet 可以創建一個新的Cookie,設置它的關鍵字、值及有效期等屬性,然後把Cookie 設置在HttpServletResponse 對象中發回浏覽器,還可以從HttpServletRequest 對象中獲取Cookie。

編程思路:Cookie 在實際的Servlet 編程中是很廣泛應用,下面是一個從Servlet 中獲取Cookie 信息的例子。

ShowCookies.java 的源代碼如下:

import javax.servlet.*;
import javax.servlet.http.*;
/**
* <p>This is a simple servlet that displays all of the
* Cookies present in the request
*/
public class ShowCookies extends HttpServlet
{
 public void doGet(HttpServletRequest req, HttpServletResponse resp)
 throws ServletException, java.io.IOException
 {
  // Set the content type of the response
  resp.setContentType("text/html;charset=gb2312");
  // Get the PrintWriter to write the response
  java.io.PrintWriter out = resp.getWriter();
  // Get an array containing all of the cookies
  Cookie cookies[] = req.getCookies();
  // Write the page header
  out.println("<html>");
  out.println("<head>");
  out.println("<title>Servlet Cookie Information</title>");
  out.println("</head>");
  out.println("<body>");
  if ((cookies == null) || (cookies.length == 0)) {
   out.println("沒有 cookies ");
  }
  else {
   out.println("<center><h1>響應消息中的Cookies 信息 </h1>");
   // Display a table with all of the info
   out.println("<table border>");
   out.println("<tr><th>Name</th><th>Value</th>" + "<th>Comment</th><th>Max Age</th></tr>");
   for (int i = 0; i < cookies.length; i++) {
    Cookie c = 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>");
 }
 // Wrap up
 out.println("</body>");
 out.println("</html>");
 out.flush();
}
/**
* <p>Initialize the servlet. This is called once when the
* servlet is loaded. It is guaranteed to complete before any
* requests are made to the servlet
* @param cfg Servlet configuration information
*/
public void init(ServletConfig cfg)
throws ServletException
{
 super.init(cfg);
}
/**
* <p>Destroy the servlet. This is called once when the servlet
* is unloaded.
*/
public void destroy()
{
 super.destroy();
}
}
 

注意:Cookie 進行服務器端與客戶端的雙向交流,所以它涉及到安全性問題。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved