posts - 13, comments - 7, trackbacks - 0, articles - 0

读取*.properties文件的方法

Posted on 2007-02-01 14:41 赵永超 阅读(313) 评论(0)  编辑  收藏 所属分类: java

public class SysUtils{

Properties property = new Properties();
InputStream is = null;
try{
is = SysUtils.class.getClassLoader().getResourceAsStream("system.properties");
property.load(is);
String s = property.getProperty("CMS_URL");
}catch(Excption e){
System.out.println("hi"):
}


}

只有注册用户登录后才能发表评论。


网站导航: