首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

java中的反照机制

2012-06-27 
java中的反射机制怎样在java中通过类的名字来加载这个类的对象,需要使用到java中的反射机制:如:通过Proper

java中的反射机制
怎样在java中通过类的名字来加载这个类的对象,需要使用到java中的反射机制:

  如:通过Properties文件来读取这个类名
  calss MyFactory
{
   Student student;
   Properties prop=new Properties();
   //类加载器可以从classPath中加载文件 ,在src文件夹下就可以被加载
   //因为这个会被编译成class文件放在bin目录下载
   InputStream inStream=MyFactory.class.getClassLoader()
    .getResourceAsStream("myproperties.properties");
   prop.load(inStream);
   //studentKey是放在properties文件中的Key
    String studentValue=prop.getProperty("studentKey");//Student
    //这个Class.forName("studentValue")只是在虚拟机中装载这个类,没有实例 
     //对 象
     //实例对象=(Student)Class.forName("studentValue").NewInstance();
    //这里必须保证这个类中有一个无参的构造函数
    student=(Student)Class.forName("studentValue").NewInstance();
}

热点排行