欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解析关于java,php以及html的所有文件编码与乱码的处理方法汇总

程序员文章站 2023-01-13 08:38:53
php文件中在乱码(如a.php文件在浏览器乱码):header("content-type:text/html;charset=utf-8")是设置网页的。mysql_q...

php文件中在乱码(如a.php文件在浏览器乱码):
header("content-type:text/html;charset=utf-8")是设置网页的。
mysql_query("set names utf-8")设置数据库的。

java中的struts:
中文乱码问题一般是指当请求参数有中文时,无法在action中得到正确的中文。struts2中有2种办法可以解决这个问题:
设置jsp页面的pageencoding=”utf-8”,就不会出现中文乱码;
如果jsp页面的pageencoding=”gbk”,那么需要修改struts.i18n.encoding=gbk,在struts.xml中加入如下语句进行修改。

复制代码 代码如下:

<?xml version="1.0" encoding="utf-8" ?>
<!doctype struts public
"-//apache software foundation//dtd struts configuration 2.0//en"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.i18n.encoding" value="gbk"/>
……
</struts>

上面2种方法可以解决post请求中的中文参数,但是get请求中的中文参数不能解决,get请求中的中文参数的乱码需要通过修改tomcat的server.xml文件来解决,修改如下内容,加入uriencoding=”gbk”:<connector port="8080"  …… uriencoding="gbk"/>