LocalDateTimeUtil.java 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698
  1. package com.slibra.common.utils;
  2. import java.security.NoSuchAlgorithmException;
  3. import java.security.SecureRandom;
  4. import java.text.SimpleDateFormat;
  5. import java.time.*;
  6. import java.time.format.DateTimeFormatter;
  7. import java.time.temporal.ChronoUnit;
  8. import java.time.temporal.TemporalAdjusters;
  9. import java.time.temporal.TemporalUnit;
  10. import java.util.ArrayList;
  11. import java.util.Date;
  12. import java.util.List;
  13. import java.util.Random;
  14. /**
  15. * 时间处理工具类
  16. *
  17. * @return
  18. */
  19. public class LocalDateTimeUtil{
  20. /**
  21. * 时间格式
  22. */
  23. private static final String YYYY_MM_DD_HH_MM_SS_SSS = "yyyy-MM-dd HH:mm:ss.SSS";
  24. private static final String YYYY_MM_DD_HH_MM_SS = "yyyy-MM-dd HH:mm:ss";
  25. private static final String YYYY_MM_DD_HH_MM = "yyyy-MM-dd HH:mm";
  26. private static final String YYYY_MM_DD_HH = "yyyy-MM-dd HH";
  27. private static final String YYYY_MM_DD = "yyyy-MM-dd";
  28. private static final String YYYY_MM = "yyyy-MM";
  29. private static final String YYYY = "yyyy";
  30. /**
  31. * 获取时间类型
  32. * 1-包含开始和结束时间(默认)
  33. * 2-包含结束-不包含开始时间 // 开始时间+1天
  34. * 3-包含开始-不包含结束时间 // 结束时间-1天
  35. * 4-不包含开始和结束时间 // 开始时间+1天 or 结束时间-1天
  36. */
  37. private static final int BETWEEN_TYPE_ONE = 1;
  38. private static final int BETWEEN_TYPE_TWO = 2;
  39. private static final int BETWEEN_TYPE_THREE = 3;
  40. private static final int BETWEEN_TYPE_FOUR = 4;
  41. private static Random random;
  42. static {
  43. try {
  44. random = SecureRandom.getInstanceStrong();
  45. } catch (NoSuchAlgorithmException e) {
  46. e.printStackTrace();
  47. }
  48. }
  49. /**
  50. * 判断时间 小于
  51. * <P> t1 < t2 = true (如:2019-10-13 11:11:00 < 2020-11-13 13:13:00 = true) </P>
  52. *
  53. * @author wangsong
  54. */
  55. public static boolean isBefore(LocalDateTime t1, LocalDateTime t2) {
  56. return t1.isBefore(t2);
  57. }
  58. /**
  59. * 判断时间 大于
  60. * <P> t1 > t2 = true </P>
  61. *
  62. * @author wangsong
  63. */
  64. public static boolean isAfter(LocalDateTime t1, LocalDateTime t2) {
  65. return t1.isAfter(t2);
  66. }
  67. /**
  68. * 自构建 LocalDateTime ==> 年,月,日,时,分
  69. *
  70. * @author wangsong
  71. */
  72. public static LocalDateTime of(int year, int month, int dayOfMonth, int hour, int minute) {
  73. return LocalDateTime.of(year, month, dayOfMonth, hour, minute);
  74. }
  75. /**
  76. * 自构建 LocalDateTime ==> 年,月,日,时,分,秒,毫秒(精确到9位数)
  77. *
  78. * @author wangsong
  79. */
  80. public static LocalDateTime of(int year, int month, int dayOfMonth, int hour, int minute, int second, int nanoOfSecond) {
  81. return LocalDateTime.of(year, month, dayOfMonth, hour, minute, second, nanoOfSecond);
  82. }
  83. //========================================================================================================
  84. //========================================================================================================
  85. //========================================================================================================
  86. //============================================== 时间获取 =================================================
  87. //========================================================================================================
  88. //========================================================================================================
  89. /**
  90. * 获取指定某一天的开始时间 00:00:00
  91. *
  92. * @param time
  93. * @return java.time.LocalDateTime
  94. * @author wangsong
  95. * @date 2020/12/24 0024 15:10
  96. * @version 1.0.1
  97. */
  98. public static LocalDateTime getDayStart(LocalDateTime time) {
  99. return time.withHour(0)
  100. .withMinute(0)
  101. .withSecond(0)
  102. .withNano(0);
  103. }
  104. /**
  105. * 获取指定某一天的结束时间 23:59:59.999999
  106. *
  107. * @author wangsong
  108. */
  109. public static LocalDateTime getDayEnd(LocalDateTime time) {
  110. // 年 月 天 时 分 秒 毫秒(这里精确到6位数)
  111. return time.withHour(23)
  112. .withMinute(59)
  113. .withSecond(59)
  114. .withNano(999999);
  115. }
  116. /**
  117. * 获取指定时间是周几 1到7
  118. *
  119. * @author wangsong
  120. */
  121. public static int week(LocalDateTime time) {
  122. return time.getDayOfWeek().getValue();
  123. }
  124. /**
  125. * 获取指定时间之后的日期
  126. * <P> 根据field不同加不同值 , field为ChronoUnit.*
  127. * 秒 ChronoUnit.SECONDS
  128. * 分 ChronoUnit.MINUTES
  129. * 时 ChronoUnit.HOURS
  130. * 半天 ChronoUnit.HALF_DAYS
  131. * 天 ChronoUnit.DAYS
  132. * 月 ChronoUnit.MONTHS
  133. * 年 ChronoUnit.YEARS
  134. * </P>
  135. *
  136. * @author wangsong
  137. */
  138. public static LocalDateTime plus(LocalDateTime time, long number, TemporalUnit field) {
  139. return time.plus(number, field);
  140. }
  141. /**
  142. * 获取两个日期的时间差
  143. *
  144. * @param startTime 开始时间
  145. * @param endTime 计算时间
  146. * @param field 根据field不同减不同值 , field 为 ChronoUnit.*
  147. * @return startTime小 endTime大 返回正数,则反之
  148. * @author wangsong
  149. * <p>
  150. * 秒 ChronoUnit.SECONDS
  151. * 分 ChronoUnit.MINUTES
  152. * 时 ChronoUnit.HOURS
  153. * 半天 ChronoUnit.HALF_DAYS
  154. * 天 ChronoUnit.DAYS
  155. * 月 ChronoUnit.MONTHS
  156. * 年 ChronoUnit.YEARS
  157. * </P>
  158. */
  159. public static long betweenTwoTime(LocalDateTime startTime, LocalDateTime endTime, ChronoUnit field) {
  160. Period period = Period.between(LocalDate.from(startTime), LocalDate.from(endTime));
  161. if (field == ChronoUnit.YEARS) {
  162. return period.getYears();
  163. }
  164. if (field == ChronoUnit.MONTHS) {
  165. return period.getYears() * 12L + period.getMonths();
  166. }
  167. return field.between(startTime, endTime);
  168. }
  169. /**
  170. * 获取指定时间之前的日期
  171. *
  172. * @author wangsong
  173. * <P> 根据field不同减不同值, field 为 ChronoUnit.*
  174. * 秒 ChronoUnit.SECONDS
  175. * 分 ChronoUnit.MINUTES
  176. * 时 ChronoUnit.HOURS
  177. * 半天 ChronoUnit.HALF_DAYS
  178. * 天 ChronoUnit.DAYS
  179. * 月 ChronoUnit.MONTHS
  180. * 年 ChronoUnit.YEARS
  181. * </P>
  182. * @version 1.0.1
  183. */
  184. public static LocalDateTime subtract(LocalDateTime time, long number, TemporalUnit field) {
  185. return time.minus(number, field);
  186. }
  187. /**
  188. * 获取指定时间 加或减N周的第一天 00:00:00
  189. *
  190. * @author wangsong
  191. */
  192. public static LocalDateTime weekFirstDay(LocalDateTime time, int num) {
  193. int week = week(LocalDateTime.now());
  194. LocalDateTime newTime = subtract(LocalDateTime.now(), week - 1L, ChronoUnit.DAYS);
  195. newTime = plus(newTime, num * 7L, ChronoUnit.DAYS);
  196. return getDayStart(newTime);
  197. }
  198. /**
  199. * 获取指定时间 加或减N周的最后一天 23:59:59:999999
  200. *
  201. * @author wangsong
  202. */
  203. public static LocalDateTime weekLastDay(LocalDateTime time, int num) {
  204. int week = week(LocalDateTime.now());
  205. LocalDateTime newTime = plus(LocalDateTime.now(), 7L - week, ChronoUnit.DAYS);
  206. newTime = plus(newTime, num * 7L, ChronoUnit.DAYS);
  207. return getDayEnd(newTime);
  208. }
  209. /**
  210. * 获取指定月 加或减N月的第一天 00:00:00
  211. *
  212. * @author wangsong
  213. */
  214. public static LocalDateTime monthFirstDay(LocalDateTime time, int num) {
  215. LocalDateTime newTime = plus(time, num, ChronoUnit.MONTHS);
  216. newTime = newTime.with(TemporalAdjusters.firstDayOfMonth());
  217. return getDayStart(newTime);
  218. }
  219. /**
  220. * 获取指定月 加或减N月的最后一天 23:59:59:999999
  221. *
  222. * @author wangsong
  223. */
  224. public static LocalDateTime monthLastDay(LocalDateTime time, int num) {
  225. LocalDateTime newTime = plus(time, num, ChronoUnit.MONTHS);
  226. newTime = newTime.with(TemporalAdjusters.lastDayOfMonth());
  227. return getDayEnd(newTime);
  228. }
  229. /**
  230. * 获取指定年 加或减N年的第一天 00:00:00
  231. *
  232. * @author wangsong
  233. */
  234. public static LocalDateTime yearFirstDay(LocalDateTime time, int num) {
  235. LocalDateTime newTime = plus(time, num, ChronoUnit.YEARS);
  236. int year = newTime.getYear();
  237. // 年 月 天 时 分 秒 毫秒(这里精确到9位数)
  238. return LocalDateTime.of(year, 1, 1, 0, 0, 0);
  239. }
  240. /**
  241. * 获取指定年 加或减N年最后一天 23:59:59:999999
  242. *
  243. * @author wangsong
  244. */
  245. public static LocalDateTime yearLastDay(LocalDateTime time, int num) {
  246. LocalDateTime newTime = subtract(time, num, ChronoUnit.YEARS);
  247. int year = newTime.getYear();
  248. // 年 月 天 时 分 秒 毫秒(这里精确到6位数)
  249. return LocalDateTime.of(year, 12, 31, 23, 59, 59, 999999);
  250. }
  251. /**
  252. * 获取17位时间戳字符串+3位随机数
  253. * <p> 这里增加了线程锁和延时一毫秒,单体项目100%不会重复,可用于生成订单号 </p>
  254. * 20200101125959999 2020-01-01 12:59:59:999
  255. *
  256. * @return
  257. * @author wangsong
  258. */
  259. public static synchronized String getNo() {
  260. String timeStamp = new SimpleDateFormat("yyyyMMddHHmmssSSS").format(new Date());
  261. timeStamp += (random.nextInt(10) + "") + (random.nextInt(10) + "") + (random.nextInt(10) + "");
  262. return timeStamp;
  263. }
  264. /**
  265. * 获取整点-- 把指定时间的 分+秒设置为0
  266. *
  267. * @param time time
  268. * @return java.time.LocalDateTime
  269. * @author wangsong
  270. * @date 2020/12/24 0024 15:10
  271. * @version 1.0.1
  272. */
  273. public static LocalDateTime getTheHour(LocalDateTime time) {
  274. // 分 // 秒 // 毫秒(这里精确到9位数)
  275. return time.withMinute(0)
  276. .withSecond(0)
  277. .withNano(0);
  278. }
  279. /**
  280. * 获取整分-- 把指定时间的 秒设置为0
  281. * <p>
  282. // * 如:
  283. // * 2020-01-01 12:10 ===> 等于 2020-01-01 12:20
  284. // * 2020-01-01 12:11 ===> 等于 2020-01-01 12:20
  285. // * 2020-01-01 12:19 ===> 等于 2020-01-01 12:20
  286. * </P>
  287. *
  288. * @param time
  289. * @return java.time.LocalDateTime
  290. * @author wangsong
  291. * @date 2020/12/24 0024 15:21
  292. * @version 1.0.1
  293. */
  294. public static LocalDateTime getTheMinute(LocalDateTime time) {
  295. // 秒 // 毫秒(这里精确到9位数)
  296. return time.withSecond(0).withNano(0);
  297. }
  298. //========================================================================================================
  299. //========================================================================================================
  300. //========================================================================================================
  301. //============================================== 转换相关 =================================================
  302. //========================================================================================================
  303. //========================================================================================================
  304. /**
  305. * LocalDateTime 转为 天 的字符串,如 1号返回 01
  306. *
  307. * @author wangsong
  308. */
  309. public static Integer parseDayInt(LocalDateTime time) {
  310. return Integer.parseInt(parse(time, "dd"));
  311. }
  312. /**
  313. * Date 转 LocalDateTime
  314. *
  315. * @author wangsong
  316. */
  317. public static LocalDateTime parseLdt(Date date) {
  318. return LocalDateTime.ofInstant(date.toInstant(), ZoneId.systemDefault());
  319. }
  320. /**
  321. * LocalDateTime 转 Date
  322. *
  323. * @author wangsong
  324. */
  325. public static Date parseDate(LocalDateTime time) {
  326. return Date.from(time.atZone(ZoneId.systemDefault()).toInstant());
  327. }
  328. /**
  329. * LocalDateTime 转 毫秒
  330. *
  331. * @author wangsong
  332. */
  333. public static Long parseMillisecond(LocalDateTime time) {
  334. return time.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();
  335. }
  336. /**
  337. * LocalDateTime 转 秒
  338. *
  339. * @author wangsong
  340. */
  341. public static Long parseSecond(LocalDateTime time) {
  342. return time.atZone(ZoneId.systemDefault()).toInstant().getEpochSecond();
  343. }
  344. /**
  345. * 将时间戳转 为 LocalDateTime
  346. *
  347. * @param timestamp
  348. * @return java.lang.String
  349. * @author wangsong
  350. * @date 2021/5/12 0012 17:13
  351. * @version 1.0.1
  352. */
  353. public static LocalDateTime parseTimestamp(Long timestamp) {
  354. return LocalDateTime.ofEpochSecond(timestamp / 1000, 0, ZoneOffset.ofHours(8));
  355. }
  356. /**
  357. * 将LocalDateTime 转 为时间戳
  358. *
  359. * @return java.lang.String
  360. * @author wangsong
  361. * @date 2021/5/12 0012 17:13
  362. * @version 1.0.1
  363. */
  364. public static Long parseTimestamp(LocalDateTime time) {
  365. return time.toEpochSecond(ZoneOffset.ofHours(8));
  366. }
  367. /**
  368. * String 类型转成 LocalDateTime ,必须为完整时间,如:2020-01-20 00:00:00
  369. *
  370. * @param timeStr 时间字符串
  371. * @return java.time.LocalDateTime
  372. */
  373. public static LocalDateTime parse(String timeStr) {
  374. return parse(timeStr, YYYY_MM_DD_HH_MM_SS);
  375. }
  376. /**
  377. * String (2020-01-20 00:00:00)类型转成 LocalDateTime
  378. *
  379. * @param timeStr timeStr 时间字符串
  380. * @param pattern pattern 格式
  381. * @return java.time.LocalDateTime
  382. */
  383. public static LocalDateTime parse(String timeStr, String pattern) {
  384. if (pattern.equals(YYYY)) {
  385. timeStr += "-01-01 00:00:00";
  386. } else if (pattern.equals(YYYY_MM)) {
  387. timeStr += "-01 00:00:00";
  388. } else if (pattern.equals(YYYY_MM_DD)) {
  389. timeStr += " 00:00:00";
  390. } else if (pattern.equals(YYYY_MM_DD_HH)) {
  391. timeStr += ":00:00";
  392. } else if (pattern.equals(YYYY_MM_DD_HH_MM)) {
  393. timeStr += ":00";
  394. }
  395. DateTimeFormatter dtf = DateTimeFormatter.ofPattern(YYYY_MM_DD_HH_MM_SS);
  396. return LocalDateTime.parse(timeStr, dtf);
  397. }
  398. /**
  399. * LocalDateTime 转完整 String 类型的时间 如:2020-01-20 00:00:00
  400. *
  401. * @param time time
  402. * @return java.lang.String
  403. */
  404. public static String parse(LocalDateTime time) {
  405. return parse(time, YYYY_MM_DD_HH_MM_SS);
  406. }
  407. /**
  408. * LocalDateTime 转指定类型的字符串
  409. *
  410. * @param time time 时间
  411. * @param pattern pattern 格式
  412. *
  413. * @return java.lang.String
  414. * @author wangsong
  415. */
  416. public static String parse(LocalDateTime time, String pattern) {
  417. if (time == null) {
  418. return null;
  419. }
  420. DateTimeFormatter df = DateTimeFormatter.ofPattern(pattern);
  421. return df.format(time);
  422. }
  423. /**
  424. * Date 转指定格式的字符串
  425. *
  426. * @param time
  427. * @author wangsong
  428. */
  429. public static String parse(Date time, String pattern) {
  430. if (time == null) {
  431. return null;
  432. }
  433. SimpleDateFormat format = new SimpleDateFormat(pattern);
  434. return format.format(time);
  435. }
  436. /**
  437. * 获取指定天的24小时(0-23) | yyyy-MM-dd HH 格式
  438. *
  439. * @param t 开始月
  440. * @return
  441. */
  442. public static List<String> getDay24Hour(LocalDateTime t) {
  443. if (t == null) {
  444. return new ArrayList<>();
  445. }
  446. List<String> times = new ArrayList<>();
  447. String time = parse(t, YYYY_MM_DD);
  448. int hourNum = 24;
  449. for (int i = 0; i < hourNum; i++) {
  450. if (i < 10) {
  451. times.add(time + " 0" + i);
  452. } else {
  453. times.add(time + " " + i);
  454. }
  455. }
  456. return times;
  457. }
  458. /**
  459. * 获取每一天的时间 (指定时间 前n月前的第一天 到 n月后的最后一天的所有时间)
  460. * <P> 一天一条数据 List<DateDays> </P>
  461. *
  462. * @param startNum 前n月,当前月开始为 0
  463. * @param endNum 后n月,当前月就是为 0
  464. * @return java.util.List<com.lplb.common.utils.LocalDateTimeUtil.DateDays>
  465. * @author wangsong
  466. */
  467. public static List<DateDays> getBetweenDaysUpListByMonth(LocalDateTime time, Integer startNum, Integer endNum) {
  468. // 本月第一天 00:00:00
  469. LocalDateTime startTime = monthFirstDay(time, startNum);
  470. // n月后的最后一天 23:59:59.999
  471. LocalDateTime endTime = monthLastDay(time, endNum);
  472. return getBetweenDaysUpList(startTime, endTime, BETWEEN_TYPE_ONE);
  473. }
  474. /**
  475. * 获取每一天的时间 (指定开始时间和结束时间)
  476. * <P>
  477. * 一天一条数据 List<DateDays>
  478. * 返回数据包括 开始时间 和 结束时间 的当天数据
  479. * </P>
  480. *
  481. * @param startTime 开始时间 (时分秒已开始时间位为准)
  482. * @param endTime 结束时间
  483. * @param type 1-包含开始和结束时间 2-包含结束-不包含开始时间 3-包含开始-不包含结束时间 4-不包含开始和结束时间
  484. * @return java.util.List<com.lplb.common.utils.LocalDateTimeUtil.DateDays>
  485. * @author wangsong
  486. */
  487. public static List<DateDays> getBetweenDaysUpList(LocalDateTime startTime, LocalDateTime endTime, Integer type) {
  488. List<DateDays> dateDaysList = new ArrayList<>();
  489. List<LocalDateTime> betweenList = getBetweenDaysList(startTime, endTime, type);
  490. for (LocalDateTime localDateTime : betweenList) {
  491. dateDaysList.add(new DateDays(localDateTime, week(localDateTime)));
  492. }
  493. return dateDaysList;
  494. }
  495. /**
  496. * 获取指定开始时间到指定结束时间的每一天, 包括开始时间,不包括结束时间,如:2020-5-16到2020-5-18 获得时间为:[2020-5-16,2020-5-17]
  497. *
  498. * @param startTime
  499. * @param endTime
  500. * @param type 1-包含开始和结束时间 2-包含结束-不包含开始时间 3-包含开始-不包含结束时间 4-不包含开始和结束时间
  501. * @return java.util.List<java.time.LocalDateTime>
  502. * @author wangsong
  503. * @date 2020/12/24 0024 15:16
  504. * @version 1.0.1
  505. */
  506. public static List<LocalDateTime> getBetweenDaysList(LocalDateTime startTime, LocalDateTime endTime, Integer type) {
  507. // 指定开始时间 00:00:00 // 指定结束时间 00:00:00
  508. LocalDateTime oldStartTime = getDayStart(startTime);
  509. LocalDateTime oldEndTime = getDayStart(endTime);
  510. // 1-包含开始和结束时间(默认) BetweenType
  511. // 2-包含结束-不包含开始时间 // 开始时间+1天
  512. // 3-包含开始-不包含结束时间 // 结束时间-1天
  513. // 4-不包含开始和结束时间 // 开始时间+1天 or 结束时间-1天
  514. if (type == BETWEEN_TYPE_TWO) {
  515. oldStartTime = plus(oldStartTime, 1, ChronoUnit.DAYS);
  516. } else if (type == BETWEEN_TYPE_THREE) {
  517. oldEndTime = subtract(endTime, 1, ChronoUnit.DAYS);
  518. } else if (type == BETWEEN_TYPE_FOUR) {
  519. oldStartTime = plus(oldStartTime, 1, ChronoUnit.DAYS);
  520. oldEndTime = subtract(endTime, 1, ChronoUnit.DAYS);
  521. }
  522. // 返回数据
  523. List<LocalDateTime> everyDays = new ArrayList<>();
  524. // 第一天数据
  525. everyDays.add(oldStartTime);
  526. while (true) {
  527. // 获取之后的每一天时间
  528. LocalDateTime nextDay = plus(everyDays.get(everyDays.size() - 1), 1, ChronoUnit.DAYS);
  529. // 大于最后一天-跳出循环
  530. if (isAfter(nextDay, oldEndTime)) {
  531. break;
  532. }
  533. everyDays.add(nextDay);
  534. }
  535. return everyDays;
  536. }
  537. /**
  538. * 获取月 (返回每一个月的字串, yyyy-MM 格式)
  539. * <p> 包含结束月,不包含开始月 </>
  540. *
  541. * @param startTime 开始月
  542. * @param endTime 结束月
  543. * @return
  544. */
  545. public static List<String> getBetweenMonthsList(LocalDateTime startTime, LocalDateTime endTime) {
  546. List<String> times = new ArrayList<>();
  547. if (startTime != null && endTime != null) {
  548. // 获取开始月的第一天
  549. endTime = monthFirstDay(endTime, 0);
  550. times.add(parse(startTime, YYYY_MM));
  551. while (isBefore(startTime, endTime)) {
  552. startTime = plus(startTime, 1, ChronoUnit.MONTHS);
  553. times.add(parse(startTime, YYYY_MM));
  554. }
  555. }
  556. return times;
  557. }
  558. /**
  559. * 获取日期端的数据保存对象
  560. *
  561. * @author ws
  562. * @mail 1720696548@qq.com
  563. * @date 2020/5/7 0007 9:41
  564. */
  565. public static class DateDays {
  566. // 当天时间- 年月日/00:00:00
  567. private LocalDateTime dayTime;
  568. // 当天是周几
  569. private int week;
  570. public DateDays(LocalDateTime dayTime, int week) {
  571. this.dayTime = dayTime;
  572. this.week = week;
  573. }
  574. public LocalDateTime getDayTime() {
  575. return dayTime;
  576. }
  577. public void setDayTime(LocalDateTime dayTime) {
  578. this.dayTime = dayTime;
  579. }
  580. public int getWeek() {
  581. return week;
  582. }
  583. public void setWeek(int week) {
  584. this.week = week;
  585. }
  586. }
  587. public static LocalDate getCurrentDate(){
  588. return LocalDate.now();
  589. }
  590. public static int getCurrentMonth(LocalDate currentDate){
  591. // 获取当前月份
  592. Month currentMonth = currentDate.getMonth();
  593. // 打印当前月份
  594. // 如果你想要获取月份的数字(1-12),你可以使用getValue()方法
  595. return currentMonth.getValue();
  596. }
  597. public static void main(String[] args) {
  598. System.out.println(getCurrentMonth(getCurrentDate()));
  599. System.out.println(isSummer());
  600. }
  601. //判断龙江业务 是否是冬季 还是 夏季
  602. //5到9月算夏天,其他算冬天
  603. public static boolean isSummer(){
  604. int currentMonth = getCurrentMonth(getCurrentDate());
  605. return currentMonth == 5 || currentMonth == 6 || currentMonth == 7 || currentMonth == 8 || currentMonth == 9;
  606. }
  607. }