通过反射动态接入外部类

代码如未显示,请按F5刷新本页面。
package demo35.reflect;

import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Collection;
import java.util.Properties;

/**
 * 一个简单的使用反射开发的框架,通过修改配置文件中类名称,框架会自动通过反射读取的这个类,并使用它。
 * 本例中使用的是ArrayList和HashSet,他们使用的是共同的接口Collection
 * @author mengfeiyang
 *
 */
public class ReflectFrame {
	public static void main(String[] args) throws Exception {
		//加载配置文件
		InputStream is = new FileInputStream("conf.properties");
		Properties props = new Properties();
		props.load(is);
		
		//生成对象
		String className = props.getProperty("className");
		Collection collection = (Collection)Class.forName(className).newInstance();
		System.out.println("当前测试类:"+className);
		//构造3个测试对象
		String str1 = new String("123");
		String str2 = new String("321");
		String str3 = new String("123");
		
		//添加到集合中
		collection.add(str1);
		collection.add(str2);
		collection.add(str3);
		
		System.out.println(collection.size());
		
	}
}
/*********************************************************/
以下是位于工程目录下的conf.properties文件内容:
#className = java.util.ArrayList
className = java.util.HashSet

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值