狗狗一直喘氣怎么回事(狗狗一直大喘氣怎么回事)
2023-07-31
更新時間:2023-07-31 09:04:55作者:未知
本頭條號主要是Java常用關(guān)鍵技術(shù)點,通用工具類的分享;以及springboot+springcloud+Mybatisplus+druid+mysql+redis+swagger+maven+docker等集成框架的技術(shù)分享;datax、kafka、flink等大數(shù)據(jù)處理框架的技術(shù)分享。文章會不斷更新,歡迎碼友關(guān)注點贊收藏轉(zhuǎn)發(fā)!
關(guān)注多的話,后面會錄制一些視頻教程,圖文和視頻結(jié)合,比如:圖書介紹網(wǎng)站系統(tǒng)、搶購系統(tǒng)、大數(shù)據(jù)中臺系統(tǒng)等。技術(shù)才是程序猿的最愛,碼友們沖啊
正文
在java開發(fā)中,幾乎所有系統(tǒng)都有報表統(tǒng)計的功能,而報表統(tǒng)計的其中一個參數(shù)就是時間段,有環(huán)比同比時間段統(tǒng)計,有時間段統(tǒng)計,有周統(tǒng)計,有趨勢圖統(tǒng)計等,所以封裝了該工具類,避免在每個統(tǒng)計方法中重復(fù)的計算這樣那樣的日期。
照舊先上工具類使用栗子:
System.out.println("201909環(huán)比日期="+ReportDateUtil.getHbMonth("201909")); System.out.println("201909同比日期="+ReportDateUtil.getTbMonth("201909")); System.out.println("201901-201909相隔月數(shù)="+ReportDateUtil.getPeriodAmount("20190101", "20190901", ReportDateUtil.MONTH)); // 用于趨勢圖中顯示日期,當統(tǒng)計值為0時也是要顯示的哦 System.out.println("201901-201909之間的日期列表="+ReportDateUtil.getPeriodDateList("20190101", "20190901", ReportDateUtil.MONTH)); ReportDateUtil.getMonthWeekGroupList("201909").forEach((k, v) -> { // 計算9月份共有多少周,每周的日期 System.out.println("201909第"+k+"周:"+v.toString()); }); System.out.println("201909中的自然周為="+ReportDateUtil.getMonthWeekList("201909"));
上面使用例子打印如下
201909環(huán)比日期=201908 201909同比日期=201809 201901-201909相隔月數(shù)=8 201901-201909之間的日期列表=[201901, 201902, 201903, 201904, 201905, 201906, 201907, 201908, 201909] 201909第1周:[2019-09-01, 2019-09-02, 2019-09-03, 2019-09-04, 2019-09-05, 2019-09-06, 2019-09-07] 201909第2周:[2019-09-08, 2019-09-09, 2019-09-10, 2019-09-11, 2019-09-12, 2019-09-13, 2019-09-14] 201909第3周:[2019-09-15, 2019-09-16, 2019-09-17, 2019-09-18, 2019-09-19, 2019-09-20, 2019-09-21] 201909第4周:[2019-09-22, 2019-09-23, 2019-09-24, 2019-09-25, 2019-09-26, 2019-09-27, 2019-09-28] 201909第5周:[2019-09-29, 2019-09-30] 201909中的自然周為=[201939, 201936, 201938, 201937, 201940]
下面給出完整的工具類,這是我項目中在報表統(tǒng)計時經(jīng)常用到的,有需要的碼友可以先收藏,說不定哪天就用到了。
import java.time.DayOfWeek; import java.time.LocalDate; import java.time.Period; import java.time.YearMonth; import java.time.format.DateTimeFormatter; import java.time.temporal.ChronoUnit; import java.time.temporal.TemporalAdjusters; import java.time.temporal.WeekFields; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.stream.Collectors; import java.util.stream.Stream; /** * 報表日期工具類 * * @author liang - liangxn * @date 2019/9/19 10:17 */ public class ReportDateUtil { private static final DateTimeFormatter DTF_YYYYMMDD = DateTimeFormatter.ofPattern("yyyyMMdd"); private static final DateTimeFormatter DTF_YYYYMM = DateTimeFormatter.ofPattern("yyyyMM"); private static final DateTimeFormatter DTF_YYYY = DateTimeFormatter.ofPattern("yyyy"); private static final String PATTERN_WEEK = "yyyyw"; public static final int YEAR = 1; public static final int MONTH = 2; public static final int DAY = 3; public static void main(String[] args) { System.out.println("201909環(huán)比日期="+ReportDateUtil.getHbMonth("201909")); System.out.println("201909同比日期="+ReportDateUtil.getTbMonth("201909")); System.out.println("201901-201909相隔月數(shù)="+ReportDateUtil.getPeriodAmount("20190101", "20190901", ReportDateUtil.MONTH)); System.out.println("201901-201909之間的日期列表="+ReportDateUtil.getPeriodDateList("20190101", "20190901", ReportDateUtil.MONTH)); ReportDateUtil.getMonthWeekGroupList("201909").forEach((k, v) -> { System.out.println("201909第"+k+"周:"+v.toString()); }); System.out.println("201909中的自然周為="+ReportDateUtil.getMonthWeekList("201909")); } /** * 獲取月的第一天 * * @param currMonth 當前日期字符串,格式y(tǒng)yyyMM * @return */ public static String getFirstOfMonth(String currMonth) { currMonth = currMonth + "01"; LocalDate d = LocalDate.parse(currMonth, DTF_YYYYMMDD); return DTF_YYYYMMDD.format(d.with(TemporalAdjusters.firstDayOfMonth())); } /** * 獲取月的最后一天 * * @param currMonth 當前日期字符串,格式y(tǒng)yyyMM * @return */ public static String getLastOfMonth(String currMonth) { currMonth = currMonth + "01"; LocalDate d = LocalDate.parse(currMonth, DTF_YYYYMMDD); return DTF_YYYYMMDD.format(d.with(TemporalAdjusters.lastDayOfMonth())); } /** * 獲取年的第一天 * * @param currYear 當前日期字符串,格式y(tǒng)yyy * @return */ public static String getFirstOfYear(String currYear) { currYear = currYear + "0101"; LocalDate d = LocalDate.parse(currYear, DTF_YYYYMMDD); return DTF_YYYYMMDD.format(d.with(TemporalAdjusters.firstDayOfYear())); } /** * 獲取年的最后一天 * * @param currYear 當前日期字符串,格式y(tǒng)yyy * @return */ public static String getLastOfYear(String currYear) { currYear = currYear + "0101"; LocalDate d = LocalDate.parse(currYear, DTF_YYYYMMDD); return DTF_YYYYMMDD.format(d.with(TemporalAdjusters.lastDayOfYear())); } /** * 計算環(huán)比月 * * @param currMonth 當前日期字符串,格式y(tǒng)yyyMM * @return */ public static String getHbMonth(String currMonth) { currMonth = currMonth + "01"; LocalDate d = LocalDate.parse(currMonth, DTF_YYYYMMDD); return DTF_YYYYMM.format(d.minusMonths(1L)); } /** * 計算同比月 * * @param currMonth 當前日期字符串,格式y(tǒng)yyyMM * @return */ public static String getTbMonth(String currMonth) { currMonth = currMonth + "01"; LocalDate d = LocalDate.parse(currMonth, DTF_YYYYMMDD); return DTF_YYYYMM.format(d.minusYears(1L)); } /** * 計算兩個日期之間的年(或月或日)的集合 * * @param startDate 開始的日期 yyyyMMdd * @param endDate 結(jié)束的日期 yyyyMMdd * @param unit 年(或月或日)的標識,默認日 * @return */ public static List
大部分系統(tǒng)都是有圖表統(tǒng)計的,有圖表統(tǒng)計的話基本都能使用到這個工具類。這也是我在多個項目中都用到,所以封裝了這個工具類。
以上就是本站?報表統(tǒng)計怎么做(月報表的統(tǒng)計制作方法)的相關(guān)內(nèi)容了,更多精彩請關(guān)注作者:萬年知識
聲明:本文由本站【創(chuàng)業(yè)者資源平臺】作者編輯發(fā)布,更多技術(shù)關(guān)注萬年技術(shù)!