struts2中form表单提交到action中乱码如何解决

2024年11月27日 06:02
有5个网友回答
网友(1):

项目编码使用统一编码格式!包括:页面,*.java文件,配置文件等
这样一般就不会出现编码问题了!
或者在项目中加上一个过滤器专用来转换前后台交互的数据编码!

网友(2):

用过滤器吧
首先创建一个类 ,然后在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

Myfilter
你的过滤器属于那个包下,要具体位置


Myfilter
/*

网友(3):

你好,在你配置文件的前面写上

网友(4):

网友(5):

设置编码集