0

我尝试使用我的 JAVA servlet 将一些 WE8MSWIN1252 编码的文本转换为 UTF8。

我在网络空间到处搜索,但没有任何帮助!

非常感谢您的帮助。

此致。

R。

4

2 回答 2

0

在我看来,WE8MSWIN1252 只是 Oracle 的 Windows-1252 数据库名称。所以试试吧。

命令行(尝试一下):

native2ascii -encoding Windows-1252 original.txt temp.txt
native2ascii -encoding UTF-8 -reverse temp.txt translated.txt
于 2013-06-12T15:33:58.407 回答
0

我使用 Spring mvc,我必须配置

@RequestMapping(value = "xxxx.json", params = {"xxx","xxx"}, method = RequestMethod.GET, produces={"application/json; charset=Windows-1252"})
于 2015-03-04T15:17:55.727 回答