cookie中存中文
Posted 不学代码的猿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cookie中存中文相关的知识,希望对你有一定的参考价值。
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中存中文的主要内容,如果未能解决你的问题,请参考以下文章
关于使用jquery.cookie.js存cookie中文出现乱码问题