这段时间经常看到有人问到web开发中怎么中文总是?号。原因其实很简单,因为大家大多用的是tomcat服务器,而tomcat服务器的默认编码为 iso-8859-1(西欧字符)。就是因为iso-8859-1(西欧字符)编码造成了我们经常看到?号。 方法一:最简单也是用的最多的方法。 <%@ page language=”java” pageEncoding=”GBK” %> 或者<%@ page contenttype=”text/html;charset=gbk”;>这里可以用gb2312或者gbk,只是gbk比gb2312支持跟多的字符。 这个方法用于jsp页面中的中文显示。 方法二:使用过滤器。 过滤器使用主要针对表单提交,插入数据库的数据都是?号。这也是应为tomcat不按request所指定的编码进行编码,还是自作主张的采用默认编码方式iso-8859-1编码。 编写一个SetCharacterEncodingFilter类。 import java.io.IOException; import javax.servlet.Filter; public class SetCharacterEncodingFilter implements Filter { public void init(FilterConfig filterConfig) throws ServletException { public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { public void destroy() { protected String selectEncoding(ServletRequest request) { 然后再web.xml加上 <!– Set Character Encoding–> <filter-mapping> 使用过滤器的好处很多,特别是项目之中。 而且在使用国际化时就更有用了,只要在页面指定 <%@ page language=”java” pageEncoding=”UTF-8″ %>,服务器就会根据本地Locale来显示正确的字符集。 所以我特别推荐使用过滤器。 方法三:修改tomcat的server.xml文件中URIEncoding。 <Connector debug=”0″ acceptCount=”100″ connectionTimeout=”20000″ disableUploadTimeout=”true” 这个方法主要针对从url中获取字符串的问题。 在tomcat5.0及以上版本,post和get方法在处理编码时有所不同。如果你在url中获取中文就会出现?号。但在tomcat4.1版本没有问题,因为tomcat4.1的post和get方法在处理编码时是一样的。
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
protected String encoding = null;
protected FilterConfig filterConfig = null;
protected boolean ignore = true;
this.filterConfig=filterConfig;
this.encoding=filterConfig.getInitParameter(“encoding”);
String value=filterConfig.getInitParameter(“ignore”);
if(value==null)
this.ignore=true;
else if(value.equalsIgnoreCase(“true”))
this.ignore=true;
else
this.ignore=false;
}
// TODO 自动生成方法存根
if (ignore || (request.getCharacterEncoding() == null)) {
String encoding = selectEncoding(request);
if (encoding != null)
request.setCharacterEncoding(encoding);
}
chain.doFilter(request, response);
}
// TODO 自动生成方法存根
this.encoding = null;
this.filterConfig = null;
}
return (this.encoding);
}
}
<filter>
<filter-name>Set Character Encoding</filter-name>
<filter-class>com.struts.common.SetCharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-name>Set Character Encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!– Set Character Encoding–>
port=”80″ redirectPort=”8443″ enableLookups=”false” minSpareThreads=”25″ maxSpareThreads=”75″
maxThreads=”150″ maxPostSize=”0″ URIEncoding=”GBK” >
</Connector>
解决jsp开发web程序中的中文问题_jsp技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 解决jsp开发web程序中的中文问题_jsp技巧
相关推荐
-      通过jdbc连接oracle的十大灵活技术_jsp技巧
-      jdbc之代码重复使用_jsp技巧
-      提升jsp页面响应速度的七大秘籍绝招_jsp技巧
-      jdbc连sql server数据库步骤及有一项操作已被挂起,需重新启动计算机解决办法_jsp技巧
-      解决jsp中使用request乱码问题_jsp技巧
-      详细的jsp分页(oracle+jsp+apache)_jsp技巧
-      jsp中与标签要用不同的方式获得数据库中的数据_jsp技巧
-      jsp2.0新特性_jsp文摘