java反射机制实现实体遍历

其中用的到了java.lang.reflect包下的feild、method类。实现对实体的属性进行遍历。

测试遍历类:

public class testEntity {

	public static void main(String[] args) {
		Entity entity=new Entity(1, "测试实体", "遍历实体");
		testEntity test=new testEntity();
		test.iterateEntity(entity);
	}
	
	public void iterateEntity(Entity entity){
		Field[] fields=entity.getClass().getDeclaredFields();//获取实体的所有属性
		String type = field.getGenericType().toString();    //获取属性的类型  
		for(Field field:fields){
			Method m;
			String name=field.getName();//获取属性名
//			System.out.println("name:"+name);
			try {
				m = entity.getClass().getMethod("get"+toUpperCaseFirstOne(name));//调用get方法获取属性值(注意这里属性名首字母记得转为大写)
				System.out.println(name+":"+m.invoke(entity)+":"+type);
			} catch (NoSuchMethodException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} catch (SecurityException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}catch (IllegalAccessException | IllegalArgumentException
					| InvocationTargetException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
		
	}
	
	//首字母转小写
    public static String toLowerCaseFirstOne(String s)
    {
        if(Character.isLowerCase(s.charAt(0)))
            return s;
        else
            return (new StringBuilder()).append(Character.toLowerCase(s.charAt(0))).append(s.substring(1)).toString();
    }
    //首字母转大写
    public static String toUpperCaseFirstOne(String s)
    {
        if(Character.isUpperCase(s.charAt(0)))
            return s;
        else
            return (new StringBuilder()).append(Character.toUpperCase(s.charAt(0))).append(s.substring(1)).toString();
    }

}

测试实体:

class Entity{
	
	private int id;
	private String name;
	private String content;
	
	Entity(int id,String name,String content){
		this.id=id;
		this.name=name;
		this.content=content;
	}
	
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getContent() {
		return content;
	}
	public void setContent(String content) {
		this.content = content;
	}
	
	
}

打印出的结果:

id:1:int
name:测试实体:class java.lang.String
content:遍历实体:class java.lang.String


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值