我尝试使用我的 JAVA servlet 将一些 WE8MSWIN1252 编码的文本转换为 UTF8。
我在网络空间到处搜索,但没有任何帮助!
非常感谢您的帮助。
此致。
R。
在我看来,WE8MSWIN1252 只是 Oracle 的 Windows-1252 数据库名称。所以试试吧。
命令行(尝试一下):
native2ascii -encoding Windows-1252 original.txt temp.txt
native2ascii -encoding UTF-8 -reverse temp.txt translated.txt
我使用 Spring mvc,我必须配置
@RequestMapping(value = "xxxx.json", params = {"xxx","xxx"}, method = RequestMethod.GET, produces={"application/json; charset=Windows-1252"})