简述
Java 8 中 日期,时间API 完全重构。抛弃了原来非常复杂的 calendar. 还加入了线程安全的等更加友好的API。本文主要是记录分享 常用的 时间所在周,月,季度,年的 第一天获取方式。
周一
/** * 获取时间戳的第一周 * @param timestamp long * @return long */ public static long getWeek1st(long timestamp) { return In(timestamp).atZone()).wi) .toInstant().toEpochMilli(); }
月第一天
/** * 获取时间戳的月第一天 * @param timestamp 时间戳 * @return long */ public static long getMonth1st(long timestamp) { return In(timestamp).atZone()) .wi()).toInstant().toEpochMilli(); } ————————————————
季度第一天
/** * 获取季度的一天 * @param timestamp * @return */ public static long quarterStart(long timestamp) { int month = In(timestamp).atZone()).getMonth().getValue(); final LocalDate date = In(timestamp).atZone()).toLocalDate(); int start = 0; // 第一季度 if (month <= 3) { start = 1; } else if (month <= 6) { start = 4; } else if (month <= 9) { start = 7; } else { start = 10; } return da(start - month).wi()).atStartOfDay() .atZone()).toInstant().toEpochMilli(); }
当前年第一天
/** * 当前年的第1天 * @return */ public static long getCurrentYear1st() { return LocalDa().atStartOfDay().wi()).atZone()) .toInstant().toEpochMilli(); }
总结
本文主要涉及的重点
时间戳转换为LocalDate,需要设置时区。
In(timestamp).atZone())
LocalDate 获取 周,月,年的第一天使用with
Tem() DayO Tem()
没有直接提供季度的方式,需要计算
如果文章有些许帮助,请关注,点赞吆。