概述
a.显示上次的访问时间
1.第一次访问,没有上次访问时间。显示当前时间
2.第n次访问,显示上次访问时间
b.上次访问时间如何保存?
每次访问的时候,显示时间的同时,需要保存本次访问的时间,可以考虑使用cookie,需要写 cookie
c.如何获取上次的访问时间?
读取cookie,遍历找到上次访问时间
具体步骤:
1.显示时间(第一次显示当前时间,第n次显示上次时间--读取cookie)
2.写cookie
3.读取cookie
4.将时间写入浏览器
@WebServlet(name = "show", urlPatterns = "/show")
public class showTimeServlet extends HttpServlet {
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//1.显示时间(第一次显示当前时间,第n次显示上次时间--读取cookie)
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd-HH:mm:ss");
String lastTime = sdf.format(new Date());
//2.写cookie
Cookie lastCookie = new Cookie("lastTime", sdf.format(new Date()));
resp.addCookie(lastCookie);
//3.读取cookie
Cookie[] cookies = req.getCookies();
if (cookies != null) {
for (Cookie cookie : cookies) {
if (cookie.getName().equals("lastTime")) {
lastTime = cookie.getValue();
}
}
}
//4.将时间写入浏览器
resp.setContentType("text/html;charset-utf-8 ");
resp.getOutputStream().write(lastTime.getBytes("utf-8"));
resp.getOutputStream().close();
}
}
最后
以上就是大力蚂蚁为你收集整理的JavaWeb——Cookie显示时间的全部内容,希望文章能够帮你解决JavaWeb——Cookie显示时间所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复