JAVA 间隔 时间 计算器
生活随笔
收集整理的這篇文章主要介紹了
JAVA 间隔 时间 计算器
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
JAVA 間隔 時間 計算器(加法)(后續繼續完善)
/*** @Author Mc * @Date 2021/3/11 上午9:48* @Version 1.0*/ public class TimeCalculatorUtils {public static void main(String[] args) {String start = "2021-03-10T00:00:00";String end = "2021-03-10T23:00:00";Integer day = 0;Integer hour = 2;Integer minute = 80 ;List<LocalDateTime> list = Calculator(start,end,day,hour,minute);for(LocalDateTime time : list) {System.out.println(time.toString());}}static List<LocalDateTime> Calculator(String start,String end,Integer day,Integer hour,Integer minute){Set<LocalDateTime> timeList = new HashSet<>();LocalDateTime startDate = LocalDateTime.parse(start);LocalDateTime endDate = LocalDateTime.parse(end);long distance = ChronoUnit.HOURS.between(startDate, endDate);if (distance < 1) {return null;}Stream.iterate(startDate, d -> {return d.plusDays(day).plusHours(hour).plusMinutes(minute);}).limit(distance + 1).forEach(f -> {timeList.add(f);});List<LocalDateTime> collect = timeList.stream().filter(x -> x.compareTo(endDate) < 1).sorted().collect(Collectors.toList());return collect;} }總結
以上是生活随笔為你收集整理的JAVA 间隔 时间 计算器的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: linux c代码更改时间间隔,在特定的
- 下一篇: 【配置】GitHub Pages使用阿里