[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
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值