解决地址栏传中文出现乱码 tomcat配置文件解决方案
时间:2010-09-13 来源:疯狂的JAVA
在写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" 这两个参数即可。
标签:Java源码 软件工程专业课程 电脑培训学校 广州软件培训 java就业培训 it培训学校 java软件工程师