代码需要一些帮助,以便在用户输入后从arrayList返回日期范围。
ArrayList mainList
static ArrayList<LEntry> mainList = new ArrayList();
public LEntry(LocalDateTime date, String id)
2018-10-23T12:05:22 A2315
2017-01-13T10:09:30 A2253
2018-05-10T18:55:30 V1225
2018-05-03T17:44:50 R9952
2017-06-15T16:25:31 A2253
我不成功的代码:
private static ArrayList<LogEntry> range() {
String sDate, eDate;
LocalDateTime startDate, endDate;
System.out.println("Start date:\n");
sDate = in.nextLine().replace(" ", "T");
System.out.println("End date:\n");
eDate = in.nextLine().replace(" ", "T");
//System.out.println(eDate);
startDate = LocalDateTime.parse(sDate, DateTimeFormatter.ISO_DATE_TIME);
endDate = LocalDateTime.parse(eDate, DateTimeFormatter.ISO_DATE_TIME);
mainList.stream().filter(i -> i.date ?? ((startDate.isBefore(i.date))&&(endDate.isAfter(i.date))).forEach(j -> Ranges.add(0, j));
return Ranges;
}
我试图使用isBefore和isAfter来获取范围,但是由于它们返回true / false,因此在将其集成到代码中时遇到了一些麻烦。
我的目标是在给定日期之间获取LEntries。
感谢您的任何帮助。
已解决,谢谢@ user7
mainList.stream()
.filter(i -> startDate.isBefore(i.date) && endDate.isAfter(i.date))
.forEach(j -> Ranges.add(0, j));
答案 0 :(得分:2)
你快到了
mainList.stream()
.filter(i -> startDate.isBefore(i.date) && endDate.isAfter(i.date))
.forEach(i -> {
//your code
});