生成连续的时刻,如:["00:00","01:00","02:00","03:00","04:00","05:00","06:00","07:00","08:00","09:00","10:00","11:00","12:00"]
public static void main(String[] args) {
List<String> hourList = new LinkedList<>();
List<LocalTime> tmpList = Stream.iterate(LocalTime.of(0, 0), seed ->
seed.plusMinutes(60)).limit(12).collect(Collectors.toList());
tmpList.forEach(k -> hourList.add(k.toString()));
System.out.println(JSONObject.toJSONString(hourList));
}
输出:
["00:00","01:00","02:00","03:00","04:00","05:00","06:00","07:00","08:00","09:00","10:00","11:00","12:00"]