写一个 Properties 格式的配置文件,配置类的完整名称。 * 写一个程序,读取这个 Properties 配置文件,获得类的完整名称并加载这个类,用 反射 的方式运行

Posted 暴走灬青春

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了写一个 Properties 格式的配置文件,配置类的完整名称。 * 写一个程序,读取这个 Properties 配置文件,获得类的完整名称并加载这个类,用 反射 的方式运行相关的知识,希望对你有一定的参考价值。

package com.heima.test;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Properties;

public class Test7 

    /**题目:
        * (1) 写一个 Properties 格式的配置文件,配置类的完整名称。
        * (2) 写一个程序,读取这个 Properties 配置文件,获得类的完整名称并加载这个类,用
        反射 的方式运行 run 方法
     * @param args
     * @throws IOException 
     * @throws ClassNotFoundException 
     * @throws IllegalAccessException 
     * @throws InstantiationException 
     * @throws SecurityException 
     * @throws NoSuchMethodException 
     * @throws InvocationTargetException 
     * @throws IllegalArgumentException 
     */
    public static void main(String[] args) throws IOException, ClassNotFoundException, InstantiationException, IllegalAccessException, NoSuchMethodException, SecurityException, IllegalArgumentException, InvocationTargetException 
        FileInputStream fis = new FileInputStream("properties");
        Properties pp = new Properties();

        pp.load(fis);
        String str = pp.getProperty("className");
        Class clazz = Class.forName(str);
        Object obj = clazz.newInstance();
        Method me = clazz.getMethod("run", null);
        me.invoke(obj, null);

    


以上是关于写一个 Properties 格式的配置文件,配置类的完整名称。 * 写一个程序,读取这个 Properties 配置文件,获得类的完整名称并加载这个类,用 反射 的方式运行的主要内容,如果未能解决你的问题,请参考以下文章

请问,在eclipse spring如何添加配置文件

springboot application.properties 写多个配置文件怎么写

springboot application.properties 写多个配置文件怎么写

SpringBoot:配置文件的作用配置文件的格式properties配置文件yml配置文件

SpringBoot的配置文件有哪几种格式?

java学习-加载.properties工具类