使用反射获取对象属性的坑

简介: 使用反射获取对象属性的坑

要么庸俗,要么孤独——叔本华

前两天遇到一个坑,当时我通过使用getDeclaredFields()函数获取对象属性时发现一个问题:

获取到的属性的顺序不对,结果我自己一看介绍

原来,它是无序的

所以我们为了解决这个问题

首先自定义一个注解用于制定排序规则

package com.ruben.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
 * @ClassName: BeanFieldSort
 * @Description:
 * @Date: 2020/9/11 22:18
 * *
 * @author: achao<achao1441470436 @ gmail.com>
 * @version: 1.0
 * @since: JDK 1.8
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface BeanFieldSort {
    /**
     * 序号
     *
     * @return
     */
    int order();
}

然后在需要排序的bean上加上这个注解

package com.ruben.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
 * @ClassName: BeanFieldSort
 * @Description:
 * @Date: 2020/9/11 22:18
 * *
 * @author: achao<achao1441470436 @ gmail.com>
 * @version: 1.0
 * @since: JDK 1.8
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface BeanFieldSort {
    /**
     * 序号
     *
     * @return
     */
    int order();
}

最后是排序的方法,这里使用java8的stream

package com.ruben;
import com.ruben.annotation.BeanFieldSort;
import com.ruben.pojo.UserInfo;
import java.lang.reflect.Field;
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collectors;
/**
 * @ClassName: FieldDemo
 * @Description:
 * @Date: 2020/9/11 22:14
 * *
 * @author: achao<achao1441470436 @ gmail.com>
 * @version: 1.0
 * @since: JDK 1.8
 */
public class FieldDemo {
    public static void main(String[] args) throws IllegalAccessException, InstantiationException {
        //获取对象
        Class<UserInfo> userInfoClass = UserInfo.class;
        //创建对象
        UserInfo userInfo = userInfoClass.newInstance();
        System.out.println(userInfo);
        //获取bean中所有字段
        Field[] fields = userInfoClass.getDeclaredFields();
        //遍历
        for (Field field : fields) {
            //把private属性设为可修改
            field.setAccessible(true);
            field.set(userInfo, "yeah!");
            System.out.println(field.getName());
        }
        System.out.println("------------");
        //排序
        List<Field> fieldList = Arrays
                .stream(fields)
                .sorted(Comparator.comparingInt(f -> f
                        .getAnnotation(BeanFieldSort.class).order()))
                .collect(Collectors.toList());
        //遍历输出结果
     fieldList.stream().map(Field::getName).forEach(System.out::println);
        System.out.println(userInfo);
    }
}

输出结果为

可以看到排序前和排序后的结果

关键就是这一句

List<Field> fieldList = Arrays.stream(fields).sorted(Comparator.comparingInt(f -> f.getAnnotation(BeanFieldSort.class).order())).collect(Collectors.toList());

sorted()函数中传入排序规则

就是这样啦,希望对大家有所帮助

相关文章
|
6月前
|
XML Java 数据格式
spring中怎么通过静态工厂和动态工厂获取对象以及怎么通过 FactoryBean 获取对象
spring中怎么通过静态工厂和动态工厂获取对象以及怎么通过 FactoryBean 获取对象
78 0
|
2月前
|
存储 Rust Go
通过对象的地址获取对象
通过对象的地址获取对象
28 0
|
3月前
|
存储 JavaScript 前端开发
对象的属性方法和深浅拷贝
总结,理解对象的属性和方法对于编程是基础而重要的,而掌握深浅拷贝的差异和使用场合则是编程的高级技能,它能帮助你有效地管理数据的完整性和独立性。
19 0
|
Java
【JAVA】反射获取对象/LIST中对象属性
【JAVA】反射获取对象/LIST中对象属性
413 0
|
Java Python
Java实例属性覆写问题
Java实例属性覆写问题
96 0
|
XML 前端开发 应用服务中间件
获取对象属性值改动的属性集合的正确姿势(拒绝大量If-else代码)
在业务场景中可能有这样的需求: 同一个类的两个对象(一个数数据库中获取的上一次的属性,一个是前端传来的修改过的属性),需要判断哪个属性被修改了。 那么有一些童鞋可能采用大量的if-else代码块对需要关注的属性进行判断。
143 0
Java反射获取对象中特定属性的值
Java反射获取对象中特定属性的值 问题一:如何找到某个对象中特定属性的值? public static Object getFieldValueByObject (Object object , String targetFieldName) throws Exception { ...
11038 0