分类: Java
2009-03-21 23:15:37
其实说到底是编码格式不一致的问题,按照网上的做法。写一个bat文件,内容如下:
native2ascii -encoding gbk ApplicationResources_zh_CN.properties temp.properties
del ApplicationResources_zh_CN.properties
rename temp.properties ApplicationResources_zh_CN.properties
pause
bat文件放在ApplicationResources_zh_CN.properties 所在的目录下面
相应的myeclipse里面也要把.properties的编码格式改成gbk,方法如下
window->preference->General->Content Types->Text->java properties file 改为gbk ,然后按update就OK了
这样问题就解决了。。。