Java中通过反射获得对象的属性信息

编程技术  /  houtizong 发布于 2年前   128

先建立一个类,有四种属性:

private int id;private String name;private byte by;private short st;

 

以下方法,创建一个对象,然后打印该对象的属性名字,属性值,和属性的类型:

public class T {public static void main(String[] args) throws Exception {User u = new User();u.setId(1);u.setName("cc");u.setBy((byte)1);u.setSt((short)2);getProperty(u);}/** * 获得一个对象各个属性的字节流 */@SuppressWarnings("unchecked")public static void getProperty(Object entityName) throws Exception {Class c = entityName.getClass();Field field[] = c.getDeclaredFields();for (Field f : field) {Object v = invokeMethod(entityName, f.getName(), null);System.out.println(f.getName() + "\t" + v + "\t" + f.getType());}}/** * 获得对象属性的值 */@SuppressWarnings("unchecked")private static Object invokeMethod(Object owner, String methodName,Object[] args) throws Exception {Class ownerClass = owner.getClass();methodName = methodName.substring(0, 1).toUpperCase()+ methodName.substring(1);Method method = null;try {method = ownerClass.getMethod("get" + methodName);} catch (SecurityException e) {} catch (NoSuchMethodException e) {return " can't find 'get" + methodName + "' method";}return method.invoke(owner);}}

 

打印结果如下:

id1intnameccclass java.lang.Stringby1bytest2short

 

请您到ITEYE看我的原创:http://cuisuqiang.iteye.com

或支持我的个人博客,地址:http://www.javacui.com

 

请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!

留言需要登陆哦

技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成

网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];

      订阅博客周刊 去订阅

文章归档

文章标签

友情链接

Auther ·HouTiZong
侯体宗的博客
© 2020 zongscan.com
版权所有ICP证 : 粤ICP备20027696号
PHP交流群 也可以扫右边的二维码
侯体宗的博客