摘要:
session和cookie的区别 cookie是把用户的数据写给浏览器,浏览器保存(可以保存多个); session是把用户的数据写到用户独占的session中,服务器端保存(保存重要的信息,避免服务器的资源浪费); session由服务器创建 ###简单例子 public class Sessi 阅读全文
摘要:
3.Cookie 从请求中拿到cookie信息 服务器响应给客户端cookie Cookie[] cookies = req.getCookies();//获取cookie cookie.getName();//获取cookie中的key cookie.getValue();//获取cookie中的 阅读全文
摘要:
###模拟登录 public class LoginServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws Servle 阅读全文
摘要:
###下载文件 public class FileServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws Servlet 阅读全文