反射修改属性

package chaperter2.question3;

import java.io.BufferedReader;

import java.io.File;
import java.io.FileReader;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import chaperter2.question1.person;



public class StoreAttrToInstance {

	private String temp;
	private person ps =new person();
	private Class clazz = ps.getClass();
	 
	
	
	public static void main(String[] args) {
		// TODO 自动生成的方法存根
    

		StoreAttrToInstance sati = new StoreAttrToInstance();
		sati.ReadFile();
		System.out.println(sati.toString());
			

	}

	
	private void ReadFile() {
	try {
		FileReader fr = new FileReader(new File("src\\chaperter2\\question2\\cout.txt"));
		BufferedReader br = new BufferedReader(fr);
		
		while((temp=br.readLine())!=null) {
			
			Cuttext(temp);
		}
		br.close();
		fr.close();
	}catch(Exception e) {
		e.printStackTrace();
	}
	}
	private void Cuttext(String line){
		String[] values= line.split("=");
		String value =values[0].trim();
		String mn="set"+values[0];
		String value1 = values[1].trim();
		
	try {
		Method[] method=clazz.getDeclaredMethods();
		for(Method m:method){
			if(m.getName().equals(mn)){
				Class[] paramType=m.getParameterTypes();
				String type=paramType[0].getCanonicalName();
				m.invoke(ps,Class.forName(type).getConstructor(String.class).newInstance(value1));
				return;
			}
				}
			

}catch (SecurityException e) {
	e.printStackTrace();
} catch (IllegalArgumentException e) {
	e.printStackTrace();
} catch (IllegalAccessException e) {
	e.printStackTrace();
} catch (InvocationTargetException e) {
	e.printStackTrace();
} catch (NoSuchMethodException e) {
	e.printStackTrace();
} catch (ClassNotFoundException e) {
	e.printStackTrace();
} catch (InstantiationException e) {
	e.printStackTrace();
}
	}
		
	
	
	public String toString(){
		return "idNo="+ps.getidNo()+"\nname="+ps.getname()+"\nage="
		+ps.getage()+"\nsex="+ps.getsex()+"\nisMerried="	+ps.getisMerried();
	
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值