search

Home  >  Q&A  >  body text

java - error when adding cookie in servlet

1. An error is reported when adding cookies:

An invalid character [13] was present in the Cookie value
  1. I checked some error reports on the Internet, most of them are [32], [44], which is said to be caused by adding "," or spaces in the cookie.

  2. The code for login processing is as follows:

//登录处理
    @RequestMapping(value = "/login/validate", method = RequestMethod.POST)
    public void Validate(@RequestParam("username") String username, @RequestParam("password") String password,
                         HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) {
        String md5 = MD5Util.stringToMD5(password);
        if (userService.verification(username, md5)) {
            User user = userService.selectByUsername(username);
            Long id = user.getId();
            Long createDate = new Date().getTime();
            String str = id + "=" + createDate;
            //加密
            byte[] result = DESUtil.desCrypto(str, "12345678");

            //把加密的字节数组转换成16进制
//            String results = TypeUtil.bytesToHexString(result);
            String results = Base64.encodeBase64String(result);

            Cookie cookie = new Cookie("token", results);
            cookie.setMaxAge(60 * 60 * 24 * 7);//7天
            cookie.setPath("/");
            System.out.println("新生成cookie和其MaxAge:" + cookie.getName() + "-->" + cookie.getMaxAge());
            httpServletResponse.addCookie(cookie);
            HttpSession session = httpServletRequest.getSession();
            session.setAttribute("user", user);
            for (Cookie c : httpServletRequest.getCookies()) {
                System.out.println("cookes添加到response后重新获取cookies和其MaxAge:" + c.getName() + "-->" + c.getMaxAge());
            }
            try {
                httpServletResponse.sendRedirect("/index.html");
//                httpServletRequest.getRequestDispatcher("/index.html").forward(httpServletRequest, httpServletResponse);
            } catch (Exception e) {
                e.printStackTrace();
            }
        } else {
            try {
                httpServletResponse.sendRedirect("no.html");
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

The error occurs here in addCookie.

滿天的星座滿天的星座2721 days ago1118

reply all(1)I'll reply

  • 代言

    代言2017-06-15 09:24:04

    After trying it, I just need to comment 2 and release 1 in the original code. Can anyone explain it?

    1. String results = TypeUtil.bytesToHexString(result);
    2. //String results = Base64.encodeBase64String(result);

    reply
    0
  • Cancelreply