通过反射将所有值从一个类中的字段复制到另一个类

2022-08-31 11:36:31

我有一个类,基本上是另一个类的副本。

public class A {
  int a;
  String b;
}

public class CopyA {
  int a;
  String b;
}

我正在做的是在通过Web服务调用发送之前将类中的值放入其中。现在我想创建一个反射方法,该方法基本上将所有相同的字段(按名称和类型)从一个类复制到另一个类。ACopyACopyAACopyA

我该怎么做?

这是我到目前为止所拥有的,但它并不完全有效。我认为这里的问题是,我试图在我正在循环的字段上设置一个字段。

private <T extends Object, Y extends Object> void copyFields(T from, Y too) {

    Class<? extends Object> fromClass = from.getClass();
    Field[] fromFields = fromClass.getDeclaredFields();

    Class<? extends Object> tooClass = too.getClass();
    Field[] tooFields = tooClass.getDeclaredFields();

    if (fromFields != null && tooFields != null) {
        for (Field tooF : tooFields) {
            logger.debug("toofield name #0 and type #1", tooF.getName(), tooF.getType().toString());
            try {
                // Check if that fields exists in the other method
                Field fromF = fromClass.getDeclaredField(tooF.getName());
                if (fromF.getType().equals(tooF.getType())) {
                    tooF.set(tooF, fromF);
                }
            } catch (SecurityException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (NoSuchFieldException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IllegalArgumentException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IllegalAccessException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

        }
    }

我相信一定有人已经以某种方式做到了这一点。


答案 1

如果您不介意使用第三方库,Apache Commons的BeanUtils将很容易地处理这个问题,使用.copyProperties(Object, Object)


答案 2

你为什么不使用gson库 https://github.com/google/gson

您只需将类A转换为json字符串即可。然后将 jsonString 转换为 subClass (CopyA) .使用以下代码:

Gson gson= new Gson();
String tmp = gson.toJson(a);
CopyA myObject = gson.fromJson(tmp,CopyA.class);