当前位置: 技术问答>java相关
tomcat编辑器的编码如何设置?
来源: 互联网 发布时间:2017-04-15
本文导语: 我的tomcat版本是4.1.12,用servlet的ServletOutputStream输出的网页时中文为乱码,而用System.out.println()输出到服务器的中文正常,据说是编译器编码有问题,请问如何设置? | web.xml文件中加入: ...
我的tomcat版本是4.1.12,用servlet的ServletOutputStream输出的网页时中文为乱码,而用System.out.println()输出到服务器的中文正常,据说是编译器编码有问题,请问如何设置?
|
web.xml文件中加入:
Set Character Encoding
filters.SetCharacterEncodingFilter
encoding
GBK
Set Character Encoding
filters.SetCharacterEncodingFilter
encoding
GBK
|
搜索本论坛。
esponse.setContentType("text/html; charset=GBK");
printwriter.println("");
printwriter.println(""");
printwriter.println(""");
esponse.setContentType("text/html; charset=GBK");
printwriter.println("");
printwriter.println(""");
printwriter.println(""");
|
使用过滤器:
在web-inf/classes/
下添加filters/SetCharacterEncodingFilter.class
这个类可在tomcat_home/webapps/examples/web-inf/classes/filters/下找到。
在web-inf/classes/
下添加filters/SetCharacterEncodingFilter.class
这个类可在tomcat_home/webapps/examples/web-inf/classes/filters/下找到。