我尝试使用我的JAVA servlet将WE8MSWIN1252编码中的一些文本转换为UTF8。
我在网络空间搜索过eveywhere但没有任何帮助!
非常感谢你的帮助。
最诚挚的问候。
R上。
答案 0 :(得分:0)
在我看来,WE8MSWIN1252只是Oracle的Windows-1252的DB名称。所以试试吧。
命令行(尝试一下):
native2ascii -encoding Windows-1252 original.txt temp.txt
native2ascii -encoding UTF-8 -reverse temp.txt translated.txt
答案 1 :(得分:0)
我使用Spring mvc,我必须配置
@RequestMapping(value = "xxxx.json", params = {"xxx","xxx"}, method = RequestMethod.GET, produces={"application/json; charset=Windows-1252"})