Servlet案例6:顯示使用者的上次訪問時間,servlet上次訪問

來源:互聯網
上載者:User

Servlet案例6:顯示使用者的上次訪問時間,servlet上次訪問

這裡是cookie的簡單應用

告訴使用者您的上次訪問時間是:xxxx-xx-xx xx:xx:xx

 

思路:

第一次訪問該網站時候,記錄當前訪問時間(new Date())

把目前時間以cookie的形式寫給用戶端(response.addCookie)

 

第二次訪問時候,擷取用戶端攜帶的相應的cookie,並且顯示給使用者

覆蓋上次訪問時間

 

代碼實現:

package cookie;import java.io.IOException;import java.text.SimpleDateFormat;import java.util.Date;import javax.servlet.ServletException;import javax.servlet.http.Cookie;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class LastAccessTimeServlet extends HttpServlet {    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        // 獲得目前時間,並格式化        Date date = new Date();        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");        String currentTime = format.format(date);        // 建立cookie,記錄最新訪問時間        Cookie cookie = new Cookie("lastAccessTime", currentTime);        // cookie儲存時間24小時        cookie.setMaxAge(60 * 60 * 24);        // 儲存cookie        response.addCookie(cookie);        // 獲得用戶端攜帶的cookie        String lastAccessTime = null;        Cookie[] cookies = request.getCookies();        if(cookies!=null){            for(Cookie coo : cookies){                if("lastAccessTime".equals(coo.getName())){                    lastAccessTime = coo.getValue();                }            }        }        response.setContentType("text/html;charset=UTF-8");        if(lastAccessTime==null){            response.getWriter().write("您是第一次訪問");        }else{            response.getWriter().write("您上次的訪問的時間是:"+lastAccessTime);        }    }    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        doGet(request, response);    }}

 

注意web.xml配置

 

效果:

第一次訪問:

 

第二次訪問(重新整理):

 

完成

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.