[Java 15 反射机制 ] 工厂模式与 properties 读取配置文件

Factory 工厂模式,配置文件 properties 相关

package com.qunar.basicJava.javase.p15reflect.factory;

import java.io.*;
import java.util.Properties;

/**
 * Author: libin.chen@qunar.com  Date: 14-6-14 11:24
 */
interface Fruit {
    public void eat();
}

class Apple implements Fruit {
    @Override
    public void eat() {
        System.out.println("吃苹果");
    }
}

class Orange implements Fruit {
    @Override
    public void eat() {
        System.out.println("吃橘子");
    }
}

class Factory {
    public static Fruit getInstance(String className) throws ClassNotFoundException, IllegalAccessException, InstantiationException {
        Fruit fruit = null;
        fruit = (Fruit) Class.forName(className).newInstance();
        return fruit;
    }
}

class Init {
    public static Properties getPro() throws IOException {
        Properties properties = new Properties();
        File file = new File("/home/work/JavaProjects/JavaLearns/BasicJava/src/main/java/com/qunar/basicJava/javase/p15reflect/factory/fruit.properties");
        if (file.exists()) {
            properties.load(new FileInputStream(file));
        } else {
            properties.setProperty("apple", "com.qunar.basicJava.javase.p15reflect.factory.Apple");
            properties.store(new FileOutputStream(file), "FRUIT CLASS");
        }
        return properties;
    }
}

public class FactoryDemo01 {
    public static void main(String[] args) throws IOException, IllegalAccessException, InstantiationException, ClassNotFoundException {
        Properties properties = Init.getPro();
        Fruit fruit = Factory.getInstance(properties.getProperty("apple"));
        if (fruit != null) {
            fruit.eat();
        }
        Fruit fruit1 = Factory.getInstance(properties.getProperty("orange"));
        if (fruit1 != null) {
            fruit1.eat();
        }
    }
}
fruit.properties
apple=com.qunar.basicJava.javase.p15reflect.factory.Apple
orange=com.qunar.basicJava.javase.p15reflect.factory.Orange
输出 :

吃苹果
吃橘子


Process finished with exit code 0

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java中,可以通过反射来动态地获取类和方法的信息。而配置文件则是一种常用的存储配置数据的方式。因此,可以使用反射来读取配置文件中的数据,并根据这些数据来动态地创建对象或调用方法。 具体来说,可以使用JavaProperties类来读取配置文件中的数据,例如: ``` Properties prop = new Properties(); prop.load(new FileInputStream("config.properties")); ``` 这里假设配置文件名为config.properties,可以通过load方法将其读入到Properties对象中。然后可以通过getProperty方法来获取指定属性的值,例如: ``` String className = prop.getProperty("class"); Class clazz = Class.forName(className); ``` 这里假设配置文件中有一个名为class的属性,其值为要创建对象的类的全限定名。可以通过getProperty方法获取该属性的值,然后使用Class.forName方法来获取该类的Class对象。 接下来,就可以使用反射来创建对象或调用方法了,例如: ``` Object obj = clazz.newInstance(); Method method = clazz.getMethod("methodName", parameterTypes); method.invoke(obj, args); ``` 这里假设要调用名为methodName的方法,并且该方法需要传入参数args。可以使用getMethod方法获取该方法的Method对象,然后使用invoke方法调用该方法。 当然,这只是一个简单的示例,实际应用中可能需要更复杂的操作。不过,通过反射和配置文件的结合,可以实现更加灵活和动态的程序设计。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值