项目编码使用统一编码格式!包括:页面,*.java文件,配置文件等
这样一般就不会出现编码问题了!
或者在项目中加上一个过滤器专用来转换前后台交互的数据编码!
用过滤器吧
首先创建一个类 ,然后在web.xml里备置过滤器就可以了
public class Myfilter implements Filter {
public void destroy() {
// TODO Auto-generated method stub
}
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
chain.doFilter(request, response);
}
public void init(FilterConfig filterConfig) throws ServletException {
// TODO Auto-generated method stub
}
}
web.xml
你好,在你配置文件的前面写上
设置编码集