`
sd1992585
  • 浏览: 48830 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

解决地址栏传中文出现乱码 tomcat配置文件解决方案

阅读更多

在写Java Web 程序时。jsp地址栏传中文时,在Action接收时,经常会出现乱码问题。

程序的解决办法是:

1.在地址栏传值时,先把值用js 函数encodeURI编码。用法:encodeURI('许国柱') 如:http://www.ih99.com/reg.do?name=encodeURI('许国柱')

2.Action接收时,再进行转义。String name = new String(request.getParameter("name").getBytes('iso8859-1'),"utf-8")

 

tomcat配置文件解决办法是:

打tomcat进的server.xml配置文件把

<Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />

 

 

<Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" useBodyEncodingForURI="true" URIEncoding="UTF-8"/>

添加 useBodyEncodingForURI="true" URIEncoding="UTF-8" 这两个参数即可。

2
0
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics