`
还有也许
  • 浏览: 169155 次
  • 性别: Icon_minigender_1
  • 来自: 郑州
社区版块
存档分类
最新评论

Myeclipse 读取中文路径的配置文件

    博客分类:
  • java
阅读更多
public String getValue(String key) throws Exception{ 
Properties properties = new Properties(); 
//文件被放在classes的根路径下,如果不在自己改 
InputStream in =PropertyUtil.class.getClassLoader 
().getResourceAsStream("demo.properties"); 
properties.load(in); 
String value =new String (properties.getProperty(key).getBytes("ISO-8859-1"),"GBK");
return value; 
}

 

重要的就是这一句,进行一下编码方式的转换,即可。

分享到:
评论
Global site tag (gtag.js) - Google Analytics