struts中actionForm中文获取解决方案

来源:互联网 发布:注意力无法集中 知乎 编辑:程序博客网 时间:2024/06/05 15:19

在actionForm中的reset方法中加入如下字符集声明即可:

  public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest)
    {
        try
        {
            httpServletRequest.setCharacterEncoding("GBK");
        }
        catch (UnsupportedEncodingException ex)
        {
        }
    }