Java 后台servlet编码的问题
如下所示,一下是doPost的方法体
没明白
resp.setCharacterEncoding("utf-8") 这一句为什么不起作用而导致resp.getOutputStream().println(req.getParameter("test")) 出现错误。
response对象的编码仍然是iso8859-1。
另外,我以doGet方式提交的时候,后台打印
new String(value.getBytes("ISO8859-1"),"utf-8")仍然是乱码。这个转码没作用吗?
try {
req.setCharacterEncoding("utf-8");
resp.setContentType("text/html;charset=utf-8"); // 未起作用
resp.setCharacterEncoding("utf-8"); // 未起作用
System.out.println("do exe:");
System.out.println(req.getParameter("test"));
resp.getOutputStream().println(new String("测试".getBytes("utf-8"),"iso8859-1"));
resp.getOutputStream().println(req.getParameter("test")); // 报错行
resp.getOutputStream().close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
输出结果:
do exe:
测试
java.io.CharConversionException: Not an ISO 8859-1 character: 测
------最佳解决方案--------------------resp.getOutputStream().println改为resp.getWriter().println要用字符流
------其他解决方案--------------------req.setCharacterEncoding("utf-8")貌似只对post请求有用
试下new String(req.getParameter("test").getBytes("iso-8859-1"),"utf-8")
------其他解决方案--------------------试试这个
用post提交
PrintWriter out = response.getWriter();
out.println(".......");
------其他解决方案--------------------web.xml的<?xml version="1.0" encoding="UTF-8"?>
还有如果是用的mysql数据库的话:
创建数据库时最好指定字符集,例如:
create database db default character set utf8;
写连接数据库代码时可以在url后面加些参数:String url = "jdbc:mysql://localhost:8080/db?useUnicode=true&characterEncoding=utf8";
------其他解决方案--------------------改为resp.getWriter().println,用字符流这样比较靠谱。
------其他解决方案--------------------你用的是tomcat么?如果是的话,可以试试修改/conf/server.xml中,添加URIEncoding="utf-8",并重启服务器,页面也要统一utf-8编码
------其他解决方案--------------------你用的什么数据库,把连接数据库的代码show一下
------其他解决方案--------------------
还没连数据库, “测试”这两个字是从前台HTML传过来的。
------其他解决方案--------------------从前台传来的时候汉字从utf-8转为iso8859-1了,我在后台再转为utf-8应该不会出乱码了啊。
post方式我req.setCharacterEncoding("utf-8")再req.getParameter("test"),这得到的不是乱码。
get方式new String(value.getBytes("ISO8859-1"),"utf-8") 这样转码以后仍然是乱码,以前好像没遇到这情况。
resp.setCharacterEncoding("utf-8") 这设置了编码格式 但是 resp.getOutputStream().println("测试") 仍然报错 java.io.CharConversionException: Not an ISO 8859-1 character: 测
求解啊!
------其他解决方案--------------------你看一下浏览器的默认编码吧,代码好像没啥问题!
------其他解决方案--------------------