1
4

2 回答 2

1

check your browser encoding and set it UTF-8

try this in web.xml

<filter> 
<filter-name>CharacterEncodingFilter</filter-name> 
<filter-class>bt.gov.g2c.framework.common.CharacterEncodingFilter</filter-class> 
<init-param> 
<param-name>requestEncoding</param-name> 
<param-value>UTF-8</param-value> 
</init-param> 
</filter> 
于 2013-04-03T07:16:02.867 回答
0

Followed mkyong url, It says.

For UTF-8 or non-English characters, for example Chinese , you should encode it with native2ascii tool.

With the help of native2ascii tool

farequoteautomatic.entry-area.gen.emd.fareamount=Ücret Miktarı

Converted to

farequoteautomatic.entry-area.gen.emd.fareamount=\ufeff\u00dccret Miktar\u0131

And at the browser i got desired out put that is Ücret Miktarı

于 2013-04-12T04:29:46.863 回答