STRUTS1.1中html:errors中文不能正确显示?

STRUTS1.1中html:errors中文不能正确显示?,在什么地方修改?------解决方法-------------------------------

STRUTS1.1中html:errors中文不能正确显示?,在什么地方修改?

------解决方法--------------------------------------------------------
将properties文件用native2ascii转换格式:
  ant中写法如下:
 
  <target name="toGB" depends="init">
  <exec dir="configs" executable="cmd.exe" os="Windows 2000" >
  <arg line="/c native2ascii -encoding gb2312 ApplicationResources_ISO.properties ApplicationResources_GB.properties"/>
  </exec>
  </target>
------解决方法--------------------------------------------------------
可能是国际化的问题
------解决方法--------------------------------------------------------
http://expert.csdn.net/Expert/topic/2302/2302194.xml?temp=.4505884
  这个帖子的内容可能有些帮助
------解决方法--------------------------------------------------------
通常在JSP 起始处加上:
  <%@ page contentType="text/html; charset=GBK" %>
  <% request.setCharacterEncoding("GBK") ; %>
  或者在ActionServlet中覆盖process 方法程式码如下:
  request.setCharacterEncoding ("GBK") ;
  super.process (request, response) ;