parent
31160c4df0
commit
4bbc20243e
@ -0,0 +1,99 @@
|
||||
package com.ruoyi.common.utils;
|
||||
|
||||
import cn.hutool.core.date.DateTime;
|
||||
import cn.hutool.core.date.DateUnit;
|
||||
import cn.hutool.core.date.DateUtil;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.ZoneId;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
import java.time.format.DateTimeFormatterBuilder;
|
||||
import java.time.temporal.ChronoField;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
/**
|
||||
* @author wangxy
|
||||
* @ClassName ObtainLastSixMonthsUtil
|
||||
* @description: 获取最近的六个月
|
||||
* @date 2023年10月11日
|
||||
* @version: 1.0.0
|
||||
*/
|
||||
public class ObtainLastSixMonthsUtil {
|
||||
|
||||
/**
|
||||
* 获取最近六个月的yyyy-MM集合
|
||||
*
|
||||
* @return List<String>
|
||||
*/
|
||||
public static List<String> getRecentlySixMonth() {
|
||||
List<String> previousMonths = new ArrayList<>();
|
||||
String currentMonth = DateUtil.format(LocalDateTime.now(), "yyyy-MM");
|
||||
previousMonths.add(currentMonth);
|
||||
for (int i = 1; i <= 11; i++) {
|
||||
DateTime dateTime = DateUtil.offsetMonth(new Date(), -i);
|
||||
String dateMonth = DateUtil.format(dateTime, "yyyy-MM");
|
||||
previousMonths.add(dateMonth);
|
||||
}
|
||||
return previousMonths;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取指定月份的最后一天
|
||||
*
|
||||
* @param yearMonth 格式yyyy-MM
|
||||
* @return String
|
||||
*/
|
||||
public static String getLastDayOfMonth(String yearMonth) {
|
||||
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
|
||||
.appendPattern("yyyy-MM[dd]")
|
||||
.parseDefaulting(ChronoField.DAY_OF_MONTH, 1)
|
||||
.toFormatter();
|
||||
LocalDate localDate = LocalDate.parse(yearMonth, formatter);
|
||||
Date date = Date.from(localDate.atStartOfDay(ZoneId.systemDefault()).toInstant());
|
||||
DateTime dateTime = DateUtil.endOfMonth(date);
|
||||
return DateUtil.format(dateTime, "yyyy-MM-dd");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param date
|
||||
* @return
|
||||
* @description: 获得当天最小时间
|
||||
* @author: Jeff
|
||||
* @date: 2019年12月21日
|
||||
*/
|
||||
public static Date getStartOfDay(Date date) {
|
||||
return DateUtil.beginOfDay(date);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param date
|
||||
* @return
|
||||
* @description: 获得当天最大时间
|
||||
* @author: Jeff
|
||||
* @date: 2019年12月21日
|
||||
*/
|
||||
public static Date getEndOfDay(Date date) {
|
||||
return DateUtil.endOfDay(date);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 计算两个时间差
|
||||
*/
|
||||
public static Long getDatePoor(Date endDate, Date nowDate) {
|
||||
// 获得两个时间的毫秒时间差异
|
||||
return DateUtil.between(nowDate, endDate, DateUnit.HOUR);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
// System.out.println(getRecentlySixMonth());
|
||||
List<String> recentlySixMonth = getRecentlySixMonth();
|
||||
recentlySixMonth.forEach(s -> System.out.println(getLastDayOfMonth(s)));
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in new issue