为了账号安全,请及时绑定邮箱和手机立即绑定

中文乱码问题(请问为啥为设置了字符编码为utf-8,但是username的时候还是乱码了)

<%@ page language="java" import="java.net.*,java.util.*" contentType="text/html; charset=utf-8"

    pageEncoding="utf-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>主页</title>

</head>

<body>

<h1>用户登录</h1>

<hr>

<%

request.setCharacterEncoding("utf-8");

String username="";

String password="";

Cookie[] cookies = request.getCookies();

if(cookies != null && cookies.length > 0){

for(Cookie cookie:cookies){

if(cookie.getName().equals("username")){

username = URLEncoder.encode(cookie.getValue(),"utf-8");

}

if(cookie.getName().equals("password")){

password = URLEncoder.encode(cookie.getValue(),"utf-8");

}

}

}



%>

<form name="loginForm" action="dologin.jsp" method="post">

<table>

<tr>

<td>用户名:</td>

<td><input type="text" name="username" value="<%=username %>"></td>

</tr>

<tr>

<td>密码:</td>

<td><input type="password" name="password" value="<%=password%>"></td>

</tr>

<tr>

<td colspan="2"><input type="checkbox" name="remenber" checked="checked"/>记住密码</td>

</tr>

<tr>

<td colspan="2" align="center"><input type="submit" value="登录"></td>

</tr>

</table>

</form>

</html>


正在回答

3 回答

username = URLEncoder.encode(cookie.getValue(),"utf-8");   

试一下username = URLDecoder.decode(cookie.getValue(),'utf-8');

0 回复 有任何疑惑可以回复我~
#1

Zhao_Tenfe 提问者

谢谢,不过还是乱码,一样的
2016-11-17 回复 有任何疑惑可以回复我~
#2

Zhao_Tenfe 提问者

非常感谢!是这个原因
2016-11-17 回复 有任何疑惑可以回复我~

我的也是 ,你怎么解决的

0 回复 有任何疑惑可以回复我~
#1

Zhao_Tenfe 提问者

username = URLEncoder.encode(cookie.getValue(),"utf-8"); 试一下username = URLDecoder.decode(cookie.getValue(),'utf-8');
2016-11-19 回复 有任何疑惑可以回复我~

没事的

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

中文乱码问题(请问为啥为设置了字符编码为utf-8,但是username的时候还是乱码了)

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信