当前位置: 代码迷 >> J2SE >> Properties 取属性文件的有关问题,可能是编码的有关问题,请指点一下
  详细解决方案

Properties 取属性文件的有关问题,可能是编码的有关问题,请指点一下

热度:116   发布时间:2016-04-24 13:41:23.0
Properties 取属性文件的问题,可能是编码的问题,请指点一下
Properties   prop   =   new   Properties();
FileInputStream   fis;
try   {

fis   =   new   FileInputStream( "xmlpath.properties ");
prop.load(fis);
fis.close();

}   catch   (FileNotFoundException   e)   {
e.printStackTrace();
}   catch   (IOException   e)   {
e.printStackTrace();
}
                                    String   str   =   prop.getProperty( "th001 ");

[xmlpath.properties]文件,中这样的数据
[th001=./xlsFile/領収書.xls],后面的日文

str   返回的是[./xlsFile/??????.xls]

请知道的朋友,指点一下,谢谢了。



------解决方案--------------------
String str = prop.getProperty( "th001 ");改为
String str = new String(prop.getProperty( "th001 ").getBytes( "ISO-8859-1 "), "gbk ");
  相关解决方案