首页 > 其他 > 详细

cookie中存中文

时间:2017-03-15 00:43:54      阅读:351      评论:0      收藏:0      [点我收藏+]

cookie中存中文

1:想要在cookie中存中文:需要用到URLEncoder(在jdkAPI中有介绍)

 技术分享

 

 

Cookie cookie = new Cookie("User",URLEncoder.encode(要编码的参数,"utf-8"));(编码后页面需要解码)

2:页面解码:

用js 解码。

w3c菜鸟教材中  EncoderURL可以完成解码操作:

技术分享

技术分享

技术分享

技术分享

 

事例代码:
<script type="text/javascript">
window.onload = function(){
var date = "${cookie.username.value}";
var username = decodeURI(date);
document.getElementById("_un").value = username;
}
</script>

cookie中存中文

原文:http://www.cnblogs.com/daishiwen/p/6551406.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!