package itcast.com;
import java.io.*;
import java.util.*;
public class reflact2 {
/**
* @param args
*/
public static void main(String[] args)throws Exception {
// TODO Auto-generated method stub
InputStream in = new FileInputStream("E:\myEclipse Workspaces\study\src\itcast\com\config.Properties");
Properties pro = new Properties();
pro.load(in);
in.close();
String classname = pro.getProperty("classname");
Collection coll = (Collection) Class.forName("className").newInstance();
field a1=new field(3,5);
field a2=new field(4,4);
field a3=new field(3,5);
coll.add(a1);
coll.add(a2);
coll.add(a3);
coll.remove(a1);
System.out.println(coll.size());
}
}
就这段代码我始终要报错 但是配置文件我确实是放在了E:\myEclipse Workspaces\study\src\itcast\com 该目录下。
如果我不写E:\myEclipse Workspaces\study\src\itcast\com 只写config.Properties 的话就不会报错。 但是运行的时候会显示找不到文件。
怎么回事啊?
|