首页 > 编程语言 > 详细

java类反射读取配置文件

时间:2021-05-04 09:51:29      阅读:35      评论:0      收藏:0      [点我收藏+]
import java.io.FileReader;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Properties;

//通过反射运行配置文件
public class ReflectDemo7 {
    public static void main(String[] args) throws IOException, ClassNotFoundException, NoSuchMethodException, InvocationTargetException, IllegalAccessException {

        //Properties读取文件获取键值对
        Properties properties = new Properties();
        FileReader fileReader = new FileReader("Example1\\class.txt");
        properties.load(fileReader);
        fileReader.close();
        //获取值
        String className = properties.getProperty("className");
        String methodName = properties.getProperty("methodName");
        //执行方法
        Class<?> aClass = Class.forName(className);
        Method method = aClass.getMethod(methodName);
        method.invoke(aClass);
    }
}


java类反射读取配置文件

原文:https://www.cnblogs.com/codegzy/p/14728364.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!