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();
}
}