suchen

Heim  >  Fragen und Antworten  >  Hauptteil

java – Konvertieren Sie list<bean> in eine Liste einer anderen Bean.

public static class DataBean {
    private int value;
    private BigDecimal name;}
public class ChartData {
    private Integer time;
    private BigDecimal result;}

Ich benötige eine Operation ähnlich der folgenden,

List<ChartData> data = getdata();
List<SeriesBean.DataBean> yValue = data.stream().map(item -> (SeriesBean.DataBean) item);

Fehler meldender nicht konvertierbarer Typ, DataBean ist eine interne statische Klasse.
In C++ gibt es reinterpret_cast, dessen Konvertierung erzwungen werden kann, und Java sollte über eine entsprechende Methode verfügen

PHP中文网PHP中文网2749 Tage vor1036

Antworte allen(4)Ich werde antworten

  • 大家讲道理

    大家讲道理2017-05-17 10:09:31

    Apache CommonsBeanUtilsSpringBeanUtils 都有提供 copyProperties 方法,作用是将一个对象的属性的值赋值给另外一个对象,但前提是两个对象的属性类型且 名字 相同。

    比如使用 Apache Commons 的 BeanUtils

    import java.math.BigDecimal;
    import org.apache.commons.beanutils.BeanUtils;
    
    public class TestBeanUtils {
    
        public static void main(String[] args) throws Exception {
    
            ChartData src = new ChartData(1, BigDecimal.valueOf(123));
            DataBean dest = new DataBean();
    
            BeanUtils.copyProperties(dest, src);
    
            System.out.println(src);
            System.out.println(dest);
        }
    
        public static class DataBean {
    
            private int time;
            private BigDecimal result;
    
            public int getTime() {
                return time;
            }
    
            public void setTime(int time) {
                this.time = time;
            }
    
            public BigDecimal getResult() {
                return result;
            }
    
            public void setResult(BigDecimal result) {
                this.result = result;
            }
    
            @Override
            public String toString() {
                return "DataBean{" + "time=" + time + ", result=" + result + '}';
            }
    
        }
    
        public static class ChartData {
    
            private Integer time;
            private BigDecimal result;
    
            public ChartData(Integer time, BigDecimal result) {
                this.time = time;
                this.result = result;
            }
    
            public Integer getTime() {
                return time;
            }
    
            public BigDecimal getResult() {
                return result;
            }
    
            public void setTime(Integer time) {
                this.time = time;
            }
    
            public void setResult(BigDecimal result) {
                this.result = result;
            }
    
            @Override
            public String toString() {
                return "ChartData{" + "time=" + time + ", result=" + result + '}';
            }
    
        }
    
    }
    


    所以如果 ChartDataDataBean 的属性名称一致,你的代码可以这样写(就不用挨个属性的写 setter 方法了):

    List<ChartData> data = getdata();
    List<DataBean> yValue = new ArrayList<>(data.size());
    for (ChartData item : data) {
        DataBean bean = new DataBean();
        BeanUtils.copyProperties(bean, item);
        yValue.add(bean);
    }

    当然,需要注意的一点是,这是使用反射实现的,效率要比直接写 setter 方法要低一些。

    Antwort
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-17 10:09:31

    List<DataBean> yValue = data.stream().map(item -> {
        DataBean bean = new DataBean();
        bean.setName(item.getResult());
        bean.setValue(item.getTime());
        return bean;
    }).collect(Collectors.toList());

    Antwort
    0
  • 迷茫

    迷茫2017-05-17 10:09:31

    强转只能父类转子类,你这就老实点一个个字段set过去就好了

    Antwort
    0
  • 阿神

    阿神2017-05-17 10:09:31

    楼主学习一下 Java 的类型转换啊。这种条件下,不能强转的。

    Antwort
    0
  • StornierenAntwort