彻底解决Tomcat的页面提交时的中文问题
2008-01-05 18:36:22 来源:WEB开发网 <Connector port="8080"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
debug="0" connectionTimeout="20000"
disableUploadTimeout="true" URIEncoding="GBK"/>
就是在server.xml配置文件中加入 URIEncoding=“GBK”这句话。
现归纳一下java中文问题,
1、页面中文显示,设置<meta http-equiv="content-type" content="text/Html; charset=GBK">即可
2、Response用流向页面输出中文,要设置Response的字符集response.setCharaterEncoding(”GBK”)
假如使用PRintWriter输出中文,只要设置<meta http-equiv="content-type" content="text/html; charset=gb2312">
3、提交中文,对于Tomcat就是使用开头的方法,对于Weblogic,可以使用一个Filter,在Filter里面,设置Request的字符集,request.setCharaterEncoding(”GBK”)
4、假如用的不是jsp做输出页面,而是Velocity,要在velocity.properties中设置
velocimacro.library = webwork.vm, tigris-macros.vm
input.encoding=GBK
output.encoding=GBK
default.contentType=text/html; charset=GBK
5、万能转换,String str = new String(”中文”.getBytes(”GBK”),”iso-8859-1”);
上面的方法把GBK字符输出到iso-8859-1字符集的页面
- ››解决flash 中无法导出swf文件的方法
- ››解决"ios模拟器未能安装此应用程序"办法...
- ››解决jquery easyui easyloader加载外部js文件失败...
- ››解决无法使用Android SDK Manager下载SDK开发包的...
- ››彻底解决linux cent os putty 问题办法
- ››解决网页内容无法复制
- ››解决Android手机在开发调试时logcat不显示输出信息...
- ››解决Windows 8操作系统假死的方法
- ››解决ubuntu 不识别 android 设备 方法
- ››解决ubuntu server sudo出现sudo:must be setuid ...
- ››解决数据库 Table 'content_tags' is mar...
- ››解决FF浏览器和IE下载文件乱码问题
更多精彩
赞助商链接