本帖最后由 xclyijin 于 2015-7-24 18:38 编辑
package itheima;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ReflectTest {
public static void main(String[] args) throws IOException, Exception {
Mainboard mb=new Mainboard();
mb.run();
File configFile=new File("pci.properties");//显示说找不到该文件,new File不是如果没有就新建吗??
Properties prop=new Properties();
FileInputStream fis=new FileInputStream(configFile);
prop.load(fis);
for(int x=0;x<prop.size();x++)
{
String pciName=prop.getProperty("pci"+(x+1));
Class<?> clazz=Class.forName(pciName);
PCI p=(PCI)clazz.newInstance();
mb.usePCI(p);
}
fis.close();
}
}
运行结果:main board run
Exception in thread "main" java.io.FileNotFoundException: pci.properties (系统找不到指定的文件。)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(Unknown Source)
at itheima.ReflectTest.main(ReflectTest.java:26)
这个是工程目录:明明我在里面新建了一个pci.properties了。求各位大神指导一下,本人还是菜鸟一只。
|
|