码迷,mamicode.com
首页 > 其他好文 > 详细

中文乱码问题

时间:2016-01-08 23:41:48      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:

//1)避免中文不能保存的问题,进行URL编码
//userName 是请求行
  String sUserName= URLEncoder.encode(userName,"utf-8");
 
  //2)
request.setCharacterEncoding("utf-8");
//3)
  response.setContentType("text/html;charset=utf-8");
 
//4)
String name= req.getParameter("name");
 new String(name.getBytes("iso8859-1"),"utf-8");
 
//5)
byte[] na= name.getBytes("iso8859-1");
  String me= new String(na,"UTF-8");

中文乱码问题

标签:

原文地址:http://www.cnblogs.com/kmexiaoxiao/p/5115129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!