gpt4 book ai didi

java - 合并自定义类的项目

转载 作者:行者123 更新时间:2023-12-01 14:17:15 31 4
gpt4 key购买 nike

我有以下

List<String> namesList = aList.stream()
.map(rollingD::getSettDate)
.collect(Collectors.toList());


List<String> namesList1 = aList.stream()
.map(rollingD::getPublishingPeriodCommencingTime)
.collect(Collectors.toList());

PublishingPeriodCommencingTime和SettDate都存在于同一列表中。

我如何合并我的两个项目,以便可以获取getSettDate +“” + getPublishingPeriodCommencingTime

getSettDate看起来像例如01/01/2020,而getPublishingPeriodCommencingTime看起来像例如01:10:33

我想获取日期时间戳,例如dd / mm / yyyy hh:MM:ss

最佳答案

List<Strings> stamps = IntStream.range(0, nameList.size())
.map(i->nameList.get(i) + " " + nameList1.get(i))
.collect(Collectors.toList())

但是为什么不使用原始列表呢?
List<String> stamps = aList.stream()
.map(x->x.getSettDate() + " " + x.getPublishingPeriodCommencingTime())
.collect(Collectors.toList());

关于java - 合并自定义类的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61104169/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com