码迷,mamicode.com
首页 > 编程语言 > 详细

第六课 JAVA反射获取对象属性和方法(通过配置文件)

时间:2017-07-15 11:17:31      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:get   类对象   test   raw   指定   tco   txt   style   实例化   

Service1.java

package reflection;
 
public class Service1 {
 
    public void doService1(){
        System.out.println("业务方法1");
    }
}

Service2.java

package reflection;
 
public class Service2 {
 
    public void doService2(){
        System.out.println("业务方法1");
    }
}

spring.txt(D:\spring)

class=reflection.Service1
method=doService1

Test.java

package reflection;
 
import java.io.File;
import java.io.FileInputStream;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.util.Properties;
 
public class Test {
 
    @SuppressWarnings({ "rawtypes", "unchecked" })
    public static void main(String[] args) throws Exception {
 
        //从spring.txt中获取类名称和方法名称
        File springConfigFile = new File("d:\\spring.txt");
        Properties springConfig= new Properties();
        springConfig.load(new FileInputStream(springConfigFile));
        String className = (String) springConfig.get("class");
        String methodName = (String) springConfig.get("method");
         
        //根据类名称创建类对象
        Class clazz = Class.forName(className);
        //根据方面名称,获取方法
        Method m = clazz.getMethod(methodName);
        //获取构造器
        Constructor c = clazz.getConstructor();
        //根据构造器,实例化出对象
        Object service = c.newInstance();
        //调用对象的指定方法
        m.invoke(service);
         
    }
}

 

第六课 JAVA反射获取对象属性和方法(通过配置文件)

标签:get   类对象   test   raw   指定   tco   txt   style   实例化   

原文地址:http://www.cnblogs.com/XJJD/p/7181805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!