1

在我的项目代码中,我可以看到FilterDispatcher被扩展以将默认编码设置为“UTF-8”。我的问题是我们可以做同样的任何其他更好的方法,或者这是最好的方法。

PS:最初的开发是在一个非英语 windows PC 的国家完成的。

4

1 回答 1

2

实际上有一个struts.i18n.encoding常量可以设置默认的语言环境和编码方案。您可以在struts.properties文件中设置它:

struts.i18n.encoding=UTF-8

或在struts.xml文件中:

<constant name="struts.i18n.encoding" value="UTF-8" />

顺便说一句:无论如何,struts.i18n.encoding应该UTF-8在 Struts2 中默认设置为。

BTW no.2:FilterDispatcher自 Struts 2.1.3 起已弃用。因此,如果您使用高于该版本的版本,请StrutsPrepareAndExecuteFilter改用。

于 2013-07-11T20:40:47.257 回答