JSP提交中文后乱码

2024-11-02 19:56:42
推荐回答(5个)
回答1:

在你的zhuce_cm.jsp页面中加入request.setCharacterEncoding("GBK"); 在你的zhuce.jsp中的文件顶部加上<%@page conetextType="text/html; charset=gbk"%>这样你的乱码问题能够很好地解决

回答2:

<%@page conetextType="text/html; charset=gbk"%>

然后数据在网络中传输是iso8859_1编码, 客户/服务器得到数据时
new String(request.getParameter("pname") .getBytes("iso8859_1"),"gbk")

linux下一般utf-8

回答3:

加上这句: request.setCharacterEncoding("GBK");

回答4:

request.setCharacterEncoding("GBK");

回答5:

servlet过滤器 utf-8