我有以下
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());