万能方式:
String str = new String(req.getParameter(“utf-8”).getBytes(“iso8859-1”),“utf-8”)
(1)解决ajax的中文乱码问题
response.setContentType(“text/html;charset=utf-8”);
(2)解决cookie的中文乱码问题
URLDecoder.decode(cookies[i].getValue(),"utf-8")
(3)解决post请求的中文乱码问题
request.setCharacterEncoding("utf-8");
(4)解决get请求的中文乱码问题
byte [] bytes=username(需要解决乱码的变量名).getBytes("iso-8859-1");//string-- byte[]
username = new String(bytes,"utf-8");//byte []---string
(5)上传和下载中的中文乱码问题
(1)
上传时的乱码是上传的文件名有中文, 和获取普通表单项时value值中有中文导致的中文乱码
导入了两个jar包
commons-fileupload.jar
commons-io.jar
//1.创建FileItemFactor工厂
FileItemFactory factory = new DiskFileItemFactory();
//2.创建文件上传组件
ServletFileUpload upload = new ServletFileUpload(factory);
**upload.setHeaderEncoding("utf-8");//解决中文乱码(上传文件名称有中文的情况下)的问题在实现上传之前**
//上传并接收返回的数据
List<FileItem> itemList = null;
try {
itemList = upload.parseRequest(request);
//解析请求中的数据封装到集合,返回的是FileItem泛型的集合,给一个FileItem都对应一条表单数据
} catch (FileUploadException e) {
e.printStackTrace();
}
//4.遍历集合,对每个表单项进行处理
for(int i = 0;i<itemList.size();i++){
//对file表单项和普通表单项进行不同的处理
FileItem item = itemList.get(i);//一个fileItem中封装了一个表单项
if(item.isFormField()){//为true时为普通表单项
//根据各个表单的value值
if("name".equals(item.getFieldName())){
**String name = item.getString("utf-8");//解决value中的中文乱码问题**
}
}else{//为false是file表单
try {
item.write(file);
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
(2)下载的附件如果是中文,会出现乱码问题
·1.先确定浏览器
if(IE浏览器){
URLEncoder.encode(“附件的名称”,“utf-8”);
}else{ //其他浏览器
new String (附件名称.getBytes(“utf-8”),“iso-8859-1”);
}