獲取List集合物件中某一列屬性值

南國以南i發表於2020-11-09

例:獲取disposeList集合中CorpusMarkPage物件中的responseId屬性,生成新的List集合

List<String> responseIdList = disposeList.stream().map(CorpusMarkPage::getResponseId).collect(Collectors.toList());

相關文章