jsp表单提交的中文全是乱码

2024-11-17 12:41:07
推荐回答(5个)
回答1:

在你接收的地方需要转码:
String name = request.getParameter("name");
name = new String(name.getBytes("iso8859_1"),"utf-8");
这里你的name就是中文了。

回答2:

常见问题。

解决办法:

  1. 页面指定编码 UTF-8 ,两处。

  2. 表单提交方式 post

  3. java接收端 用 new String(getBytes(ISO-8859-1),

  4. 设置tomcat的urlencode,这种方式不推荐。

回答3:

设置request和Response的CharacterEncoding
Request.setCharacterEncoding("utf-8")
Response.setCharacterEncoding("utf-8")

回答4:

需要把tomcat中server.xml 8080端口添加URIEncoding=UTF-8

回答5:

搜下 99毕设网 里面有很多的可以用 希望对您有帮助