Java IO流 用类加载器的方式管理资源和配置文件

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

class Point {
	int x, y;

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + x;
		result = prime * result + y;
		return result;
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		Point other = (Point) obj;
		if (x != other.x)
			return false;
		if (y != other.y)
			return false;
		return true;
	}

	public Point(int x, int y) {
		super();
		this.x = x;
		this.y = y;
	}
	
}
//用类加载器
public class Test {
	public static void main(String[] args) throws Exception {
		//InputStream ips = new FileInputStream("config.properties");
		
		InputStream ips = Point.class.getClassLoader().getResourceAsStream("test/config.properties");
		
		Properties props = new Properties();
		props.load(ips);
		ips.close();
		String className = props.getProperty("className");
		Collection collection = (Collection)Class.forName(className).newInstance();
		
		Point pt1 = new Point(1, 1);
		Point pt2 = new Point(2, 3);
		Point pt3 = new Point(1, 1);
		collection.add(pt1);
		collection.add(pt2);
		collection.add(pt3);
		
		System.out.println(collection.size());
	}
}

 


配置文件:  test/config.properties
配置文件内容:
className=java.util.ArrayList
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值