黑马程序员技术交流社区
标题:
在写框架时配置文件的绝对路径该怎么动态获取啊?
[打印本页]
作者:
张业婷
时间:
2014-10-3 18:13
标题:
在写框架时配置文件的绝对路径该怎么动态获取啊?
public static void main(String[] args) throws Exception{
InputStream ips=new FileInputStream(getRealPath()+"count.properties");
Properties props=new Properties();
props.load(ips);
String className=props.getProperty("className");
Collection collections=(Collection) Class.forName(className).newInstance();
String a="q";
String b="w";
String c="e";
collections.add(a);
collections.add(b);
collections.add(c);
collections.add(b);
}
getRealPath()方法给怎么实现啊?
作者:
郑飞
时间:
2014-10-3 18:43
System.getProperty("user.dir")
系统信息里面就有吧;
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2