其他分享
首页 > 其他分享> > 一个诡异的乱码问题

一个诡异的乱码问题

作者:互联网

原文链接:http://www.cnblogs.com/cszzy/archive/2013/01/09/2852801.html

在Eclipse中直接Run得到的结果不是乱码(UTF-8编码)

而在Eclipse中使用Maven tomcat:run发现结果是乱码

通过new String(temp.toString().getBytes(可能的编码), "utf-8")的方式测试 知道乱码是因为采用了GBK编码

但项目工程设置的Text file encoding为UTF-8 为什么是GBK呢?

通过下面的代码知道在tomcat容器中file.encoding的编码仍然是GBK,所以修改Eclipse->Windows->Preferences->Workspace->Text file encoding为UTF-8 (只修改项目的编码还不行,如果单独使用tomcat容器 可能需要使用-Dfile.encoding参数的形式设置编码) 

Properties p = System.getProperties();
for (Map.Entry entry : p.entrySet()) {
System.out.println(entry.getKey() + "--->" + entry.getValue());
}

转载于:https://www.cnblogs.com/cszzy/archive/2013/01/09/2852801.html

标签:问题,编码,诡异,UTF,encoding,GBK,乱码,file
来源: https://blog.csdn.net/weixin_30872733/article/details/96604490