我是靠谱客的博主 稳重西装,最近开发中收集的这篇文章主要介绍Cookie中包含空格,响应500解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

情况是这样的:

在Cookie中存储时间,使用了以下格式来解析日期:

SimpleDateFormat simpleDateFormat = new SimpleateFormat("yyyy-MM-dd HH:mm:ss");

String format = simpleDateFormat.format(new Date());

之后添加cookie

Cookie cookie = new Cookie("date", format);

response.addCookie(cookie);

通过浏览器访问该控制层的时候,报了500,原因就是format字符串中包含空格

然后我在java代码中使用 URLEncoder.encode(format, "UTF-8") 对format字符串进行编码

从js代码中使用 decodeURIComponent(getCookie("date") 进行解码并获取cookie

结果:日期中的空格变成了加号

解决方案:在java代码中将 已经编码后的字符串 中的 加号 替换为 %20

java代码如下:

SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String format = simpleDateFormat.format(new Date());
format = URLEncoder.encode(format, "UTF-8").replaceAll("\+", "%20");
Cookie cookie = new Cookie("date", format);
response.addCookie(cookie);

js代码如下:

<script type="text/javascript">
        function getCookie(cname)
        {
            let name = cname + "=";
            let ca = document.cookie.split(';');
            for(let
                    i=0; i<ca.length; i++)
            {
                let c = ca[i].trim();
                if (c.indexOf(name)===0) return c.substring(name.length,c.length);
            }
            return "";
        }
        alert(decodeURIComponent(getCookie("date")));
    </script>

 js解码时会将 %20 解码为空格

最后

以上就是稳重西装为你收集整理的Cookie中包含空格,响应500解决方案的全部内容,希望文章能够帮你解决Cookie中包含空格,响应500解决方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部