码迷,mamicode.com
首页 > Web开发 > 详细

html向servlet传乱码解决办法

时间:2014-08-25 18:42:14      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   2014   html   log   sp   new   on   

html 设置为utf-8格式

<meta http-equiv="content-type" content="text/html;charset=UTF-8">

 

myeclipse里可以修改jsp编码格式,

bubuko.com,布布扣

request.setCharacterEncoding("UTF-8");
response.setContentType("text/html;charset=UTF-8");

String username = (String)request.getParameter("username");
username = new String(username.getBytes("iso8859-1"),"utf-8");

 

html向servlet传乱码解决办法

标签:blog   http   ar   2014   html   log   sp   new   on   

原文地址:http://www.cnblogs.com/tuifeideyouran/p/3935336.html

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