首页 > 编程语言 > 详细

java中遍历实体类,获取属性名和属性值

时间:2018-07-02 10:10:05      阅读:796      评论:0      收藏:0      [点我收藏+]

方式一(实体类):

//java中遍历实体类,获取属性名和属性值
        public static void testReflect(Object model) throws Exception{
            for (Field field : model.getClass().getDeclaredFields()) {
                field.setAccessible(true);
                System.out.println(field.getName() + ":" + field.get(model) );
                }
        }

方式二(实体类或拓展类):

public static void  test2(Object obj) {
               try {
                   PropertyUtilsBean propertyUtilsBean = new PropertyUtilsBean();
                   PropertyDescriptor[] descriptors = propertyUtilsBean.getPropertyDescriptors(obj);
                   for (int i = 0; i < descriptors.length; i++) {
                       String name = descriptors[i].getName();
                       if (!"class".equals(name)) {
                         System.out.println(name+":"+ propertyUtilsBean.getNestedProperty(obj, name));
                       }
                   }
               } catch (Exception e) {
                   e.printStackTrace();
               }
       }

pom.xml需要配依赖

<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>

<version>1.9.3</version>
</dependency>

java中遍历实体类,获取属性名和属性值

原文:https://www.cnblogs.com/wpcnblog/p/9252260.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!