DateUtil.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. package com.jkcredit.invoice.util;
  2. import org.apache.commons.lang3.time.DateUtils;
  3. import org.joda.time.DateTime;
  4. import org.joda.time.format.DateTimeFormat;
  5. import org.joda.time.format.DateTimeFormatter;
  6. import java.text.DateFormat;
  7. import java.text.ParseException;
  8. import java.text.SimpleDateFormat;
  9. import java.util.*;
  10. /**
  11. * @description: 日期时间工具类
  12. * @author: hyh
  13. * @create: 2023-01-08 15:58
  14. **/
  15. public class DateUtil {
  16. private static String[] parsePatterns = {"yyyy-MM"};
  17. /**
  18. * 时间转换毫秒
  19. *
  20. * @param time
  21. * @return
  22. */
  23. public static Long date2Java(String time) {
  24. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm:ss");
  25. DateTime dateTime = DateTime.parse(time, format);
  26. Date date;
  27. date = dateTime.toDate();
  28. return date.getTime();
  29. }
  30. /**
  31. * 字符串转时间
  32. *
  33. * @param time
  34. * @return
  35. */
  36. public static Date stringToDate(String time) {
  37. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  38. DateTime dateTime = DateTime.parse(time, format);
  39. Date date;
  40. date = dateTime.toDate();
  41. return date;
  42. }
  43. /**
  44. * 根据时间获取月份
  45. *
  46. * @param time
  47. * @return
  48. */
  49. public static String getMonth(String time) {
  50. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM");
  51. DateTimeFormatter format1 = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  52. DateTime dateTime = DateTime.parse(time, format1);
  53. return dateTime.toString(format);
  54. }
  55. public static String dateFormate(String time) {
  56. String formatDate = "";
  57. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
  58. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  59. try {
  60. formatDate = sdf.format(sdf2.parse(time).getTime());
  61. } catch (ParseException e) {
  62. e.printStackTrace();
  63. return time;
  64. }
  65. return formatDate;
  66. }
  67. public static String getCurrentDateStr() {
  68. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  69. try {
  70. return sdf2.format(System.currentTimeMillis());
  71. } catch (Exception e) {
  72. e.printStackTrace();
  73. }
  74. return "";
  75. }
  76. /**
  77. * 时间格式转换
  78. * yyyy-MM-dd HH:mm:ss 转 yyyy-MM-dd'T'HH:mm:ss
  79. *
  80. * @param time
  81. * @return
  82. */
  83. public static synchronized String dateToTime(String time) {
  84. //转换前格式
  85. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  86. //转换后格式
  87. DateTimeFormatter format1 = DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm:ss");
  88. //将传入时间按照format格式转换为DateTime类型
  89. DateTime dateTime = DateTime.parse(time, format);
  90. //转换为format1字符串类型
  91. return dateTime.toString(format1);
  92. }
  93. /**
  94. * 判断某个时间 是否在某个区间内
  95. *
  96. * @param startTime
  97. * @param endTime
  98. * @param invalidTime
  99. * @return
  100. */
  101. public static boolean isInvalidTime(String startTime, String endTime, String invalidTime) {
  102. Date nowDate = null;
  103. Date beginDate = null;
  104. Date endDate = null;
  105. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-ddHH:mm:ss");
  106. try {
  107. beginDate = sdf.parse(startTime);
  108. endDate = sdf.parse(endTime);
  109. nowDate = sdf.parse(invalidTime);
  110. } catch (Exception e) {
  111. }
  112. Calendar date = Calendar.getInstance();
  113. date.setTime(nowDate);
  114. Calendar begin = Calendar.getInstance();
  115. begin.setTime(beginDate);
  116. Calendar end = Calendar.getInstance();
  117. end.setTime(endDate);
  118. return date.after(begin) && date.before(end);
  119. }
  120. public static String tTimeToDate(String time) {
  121. //转换前格式
  122. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm:ss");
  123. //转换后格式
  124. DateTimeFormatter format1 = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  125. //将传入时间按照format格式转换为DateTime类型
  126. DateTime dateTime = DateTime.parse(time, format);
  127. //转换为format1字符串类型
  128. return dateTime.toString(format1);
  129. }
  130. /**
  131. * 判断time是否在now的n天之内
  132. *
  133. * @param time
  134. * @param n 正数表示在条件时间n天之后,负数表示在条件时间n天之前
  135. * @return
  136. */
  137. public static boolean belongDate(String time, int n) {
  138. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  139. DateTime dateTime = DateTime.parse(time, format);
  140. Date inputTime;
  141. inputTime = dateTime.toDate();
  142. //得到日历
  143. Calendar calendar = Calendar.getInstance();
  144. //把当前时间赋给日历
  145. calendar.setTime(new Date());
  146. calendar.add(Calendar.DAY_OF_MONTH, n);
  147. //得到n前的时间
  148. Date before7days = calendar.getTime();
  149. return before7days.getTime() < inputTime.getTime();
  150. }
  151. /**
  152. * 判断给定时间与当前时间相差多少天
  153. *
  154. * @param date
  155. * @return
  156. */
  157. public static long getDistanceDays(String date, Date now) {
  158. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  159. DateTime dateTime = DateTime.parse(date, format);
  160. long days = 0;
  161. try {
  162. //String转Date
  163. Date time = dateTime.toDate();
  164. long time1 = time.getTime();
  165. long time2 = now.getTime();
  166. long diff = time1 - time2;
  167. days = diff / (60 * 60 * 24);
  168. } catch (Exception e) {
  169. e.printStackTrace();
  170. }
  171. //正数表示在当前时间之后,负数表示在当前时间之前
  172. return days;
  173. }
  174. /**
  175. * 计算两个日期之间相差的天数
  176. *
  177. * @param smdate 较小的时间
  178. * @param bdate 较大的时间
  179. * @return 相差天数
  180. * @throws ParseException
  181. */
  182. public static int daysBetween(String smdate, Date bdate) {
  183. long beTweenDays = 0L;
  184. try {
  185. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  186. DateTime dateTime = DateTime.parse(smdate, format);
  187. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  188. Date smdate1 = dateTime.toDate();
  189. bdate = sdf.parse(sdf.format(bdate));
  190. Calendar cal = Calendar.getInstance();
  191. cal.setTime(smdate1);
  192. long time1 = cal.getTimeInMillis();
  193. cal.setTime(bdate);
  194. long time2 = cal.getTimeInMillis();
  195. beTweenDays = (time1 - time2) / (1000 * 3600 * 24);
  196. } catch (Exception e) {
  197. e.printStackTrace();
  198. }
  199. return Integer.parseInt(String.valueOf(beTweenDays));
  200. }
  201. /**
  202. * 判断给定时间与当前时间相差多少天
  203. *
  204. * @param
  205. * @return
  206. */
  207. public static long getDistanceDays(String date1, String date2) {
  208. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  209. DateTime dateTime = DateTime.parse(date1, format);
  210. DateTime dateTime1 = DateTime.parse(date2, format);
  211. long days = 0;
  212. try {
  213. //String转Date
  214. Date time = dateTime.toDate();
  215. Date now = dateTime1.toDate();
  216. long time1 = time.getTime();
  217. long time2 = now.getTime();
  218. long diff = time1 - time2;
  219. days = diff / (60 * 60 * 24 * 1000);
  220. } catch (Exception e) {
  221. e.printStackTrace();
  222. }
  223. //正数表示在当前时间之后,负数表示在当前时间之前
  224. return days;
  225. }
  226. /**
  227. * 判断给定时间与当前时间相差多少小时
  228. *
  229. * @param date
  230. * @return
  231. */
  232. public static long getDistanceHours(String date, Date now) {
  233. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  234. DateTime dateTime = DateTime.parse(date, format);
  235. long hours = 0;
  236. try {
  237. //String转Date
  238. Date time = dateTime.toDate();
  239. long time1 = time.getTime();
  240. long time2 = now.getTime();
  241. long diff = time1 - time2;
  242. hours = diff / (60 * 60 * 1000);
  243. } catch (Exception e) {
  244. e.printStackTrace();
  245. }
  246. //正数表示在当前时间之后,负数表示在当前时间之前
  247. return hours;
  248. }
  249. /**
  250. * 得到几天前的时间
  251. */
  252. public static String getDateAfterDays(String date, int day) {
  253. DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
  254. Date dateR = null;
  255. try {
  256. dateR = format.parse(date);
  257. } catch (Exception e) {
  258. e.printStackTrace();
  259. }
  260. Calendar now = Calendar.getInstance();
  261. now.setTime(dateR);
  262. now.set(Calendar.DATE, now.get(Calendar.DATE) + day);
  263. return format.format(now.getTime());
  264. }
  265. /**
  266. * 判断给定时间与给定时间相差多少小时
  267. *
  268. * @param date
  269. * @return
  270. */
  271. public static long getDistanceHoursTwo(String date, String data2) {
  272. DateTimeFormatter format = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss");
  273. DateTime dateTime = DateTime.parse(date, format);
  274. DateTime dateTime2 = DateTime.parse(data2, format);
  275. long hours = 0;
  276. try {
  277. //String转Date
  278. Date time = dateTime.toDate();
  279. Date timeTwo = dateTime2.toDate();
  280. long time1 = time.getTime();
  281. long time2 = timeTwo.getTime();
  282. long diff = time1 - time2;
  283. hours = diff / (60 * 60 * 1000);
  284. } catch (Exception e) {
  285. e.printStackTrace();
  286. }
  287. //正数表示在当前时间之后,负数表示在当前时间之前
  288. return hours;
  289. }
  290. public static void main(String[] args) {
  291. /* System.out.println(getDistanceHoursFormat("2022-11-31T23:59:59"));
  292. System.out.println(isValidDate("2022-12-01T23:59:59"));
  293. System.out.println(isValidDate("2022-11-31T23:59:59"));
  294. System.out.println(getMouthDays("2022-5"));*/
  295. // System.out.println(DateUtil.getDistanceHoursTwo("2022-02-26 09:02:26","2022-03-01 09:02:58"));
  296. System.out.print(getSplitTimeOver96("2023-01-04 12:28:11","2023-01-09 12:28:10"));
  297. }
  298. public static String[] getMouthDays(String mounth){
  299. DateFormat format = new SimpleDateFormat("yyyy-MM");
  300. String [] dates = null;
  301. try {
  302. Date date = format.parse(mounth);
  303. Calendar calendar = new GregorianCalendar();
  304. calendar.setTime(date);
  305. int minDate = calendar.getActualMinimum(Calendar.DATE);
  306. int maxDate = calendar.getActualMaximum(Calendar.DATE);
  307. dates = new String[maxDate];
  308. for (int i=minDate;i<=maxDate;i++){
  309. System.out.print(i+"");
  310. String dateStr = mounth+String.format("-%02d", i).toUpperCase();
  311. dates[i-1]=dateStr;
  312. }
  313. System.out.print(dates);
  314. } catch (ParseException e) {
  315. e.printStackTrace();
  316. }
  317. return dates;
  318. }
  319. public static List<String> getSplitTimeOver96(String startDate, String endDate){
  320. List<String> ls = new ArrayList<>();
  321. DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  322. try {
  323. Date startTime = format.parse(startDate);
  324. Date endTime = format.parse(endDate);
  325. long dTime=0;
  326. for( dTime= startTime.getTime();dTime<endTime.getTime();){
  327. String str1 = "";
  328. if(dTime != startTime.getTime()){
  329. str1 = format.format(dTime+1000);
  330. }else{
  331. str1 = format.format(dTime);
  332. }
  333. dTime = dTime+(96*60*60)*1000;
  334. String str2 = format.format(dTime);
  335. if(dTime>endTime.getTime()){
  336. str2 = endDate;
  337. }
  338. ls.add(str1+"#"+str2);
  339. }
  340. /* if(dTime!=endTime.getTime()){
  341. ls.add(format.format(dTime)+"#"+endDate);
  342. }*/
  343. } catch (ParseException e) {
  344. e.printStackTrace();
  345. } finally {
  346. }
  347. return ls;
  348. }
  349. /**
  350. * 判断时间格式化
  351. *
  352. * @param date
  353. * @return
  354. */
  355. public static String getDistanceHoursFormat(String date) {
  356. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
  357. SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  358. String stringDate = "";
  359. try {
  360. //先将该字符串转换为Date类型:
  361. Date applyDate = sdf.parse(date);
  362. stringDate = sdf1.format(applyDate);
  363. } catch (Exception e) {
  364. e.printStackTrace();
  365. }
  366. return stringDate;
  367. }
  368. public static Date parseDate(String str) {
  369. if (str == null) {
  370. return null;
  371. }
  372. try {
  373. return DateUtils.parseDate(str, parsePatterns);
  374. } catch (ParseException e) {
  375. return null;
  376. }
  377. }
  378. public static boolean isValidDate(String str) {
  379. boolean convertSuccess = true;
  380. // 指定日期格式为四位年/两位月份/两位日期,注意yyyy/MM/dd区分大小写;
  381. SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
  382. try {
  383. // 设置lenient为false. 否则SimpleDateFormat会比较宽松地验证日期,
  384. //比如2007/02/29会被接受,并转换成2007/03/01
  385. format.setLenient(false);
  386. format.parse(str);
  387. } catch (ParseException e) {
  388. // 如果throw java.text.ParseException或者NullPointerException,就说明格式不对
  389. convertSuccess = false;
  390. }
  391. return convertSuccess;
  392. }
  393. }