• timestamp格式的部分

      /*** 获取当天的开始时间* @return Timestamp* @author LoveEmperor_王子様* date:   2019/8/15 15:50*/public static Timestamp getDayBegin() {Calendar cal = new GregorianCalendar();cal.set(Calendar.HOUR_OF_DAY, 0);cal.set(Calendar.MINUTE, 0);cal.set(Calendar.SECOND, 0);cal.set(Calendar.MILLISECOND, 0);return new Timestamp(cal.getTimeInMillis());}/*** 获取当天的结束时间* @return Timestamp* @author LoveEmperor_王子様* date:   2019/8/15 15:49*/public static Timestamp getDayEnd() {Calendar cal = new GregorianCalendar();cal.set(Calendar.HOUR_OF_DAY, 23);cal.set(Calendar.MINUTE, 59);cal.set(Calendar.SECOND, 59);return new Timestamp(cal.getTimeInMillis());}/*** 获取昨天的开始时间* @return Timestamp* @author LoveEmperor_王子様* date:   2019/8/15 15:57*/public static Timestamp getBeginDayOfYesterday() {Calendar cal = new GregorianCalendar();cal.setTime(getDayBegin());cal.add(Calendar.DAY_OF_MONTH, -1);return new Timestamp(cal.getTimeInMillis());}/*** 获取昨天的结束时间* @return Timestamp* @author LoveEmperor_王子様* date:   2019/8/15 15:57*/public static Timestamp getEndDayOfYesterday() {Calendar cal = new GregorianCalendar();cal.setTime(getDayEnd());cal.add(Calendar.DAY_OF_MONTH, -1);return new Timestamp(cal.getTimeInMillis());}
  • 工具类代码

      import java.sql.Timestamp;import java.util.ArrayList;import java.util.Calendar;import java.util.Date;import java.util.GregorianCalendar;import java.util.List;public class DateUtils {//获取当天的开始时间public static java.util.Date getDayBegin() {Calendar cal = new GregorianCalendar();cal.set(Calendar.HOUR_OF_DAY, 0);cal.set(Calendar.MINUTE, 0);cal.set(Calendar.SECOND, 0);cal.set(Calendar.MILLISECOND, 0);return cal.getTime();}//获取当天的结束时间public static java.util.Date getDayEnd() {Calendar cal = new GregorianCalendar();cal.set(Calendar.HOUR_OF_DAY, 23);cal.set(Calendar.MINUTE, 59);cal.set(Calendar.SECOND, 59);return cal.getTime();}//获取昨天的开始时间public static Date getBeginDayOfYesterday() {Calendar cal = new GregorianCalendar();cal.setTime(getDayBegin());cal.add(Calendar.DAY_OF_MONTH, -1);return cal.getTime();}//获取昨天的结束时间public static Date getEndDayOfYesterDay() {Calendar cal = new GregorianCalendar();cal.setTime(getDayEnd());cal.add(Calendar.DAY_OF_MONTH, -1);return cal.getTime();}//获取明天的开始时间public static Date getBeginDayOfTomorrow() {Calendar cal = new GregorianCalendar();cal.setTime(getDayBegin());cal.add(Calendar.DAY_OF_MONTH, 1);return cal.getTime();}//获取明天的结束时间public static Date getEndDayOfTomorrow() {Calendar cal = new GregorianCalendar();cal.setTime(getDayEnd());cal.add(Calendar.DAY_OF_MONTH, 1);return cal.getTime();}//获取本周的开始时间@SuppressWarnings("unused")public static Date getBeginDayOfWeek() {Date date = new Date();if (date == null) {return null;}Calendar cal = Calendar.getInstance();cal.setTime(date);int dayofweek = cal.get(Calendar.DAY_OF_WEEK);if (dayofweek == 1) {dayofweek += 7;}cal.add(Calendar.DATE, 2 - dayofweek);return getDayStartTime(cal.getTime());}//获取本周的结束时间public static Date getEndDayOfWeek(){Calendar cal = Calendar.getInstance();cal.setTime(getBeginDayOfWeek());cal.add(Calendar.DAY_OF_WEEK, 6);Date weekEndSta = cal.getTime();return getDayEndTime(weekEndSta);}//获取上周的开始时间@SuppressWarnings("unused")public static Date getBeginDayOfLastWeek() {Date date = new Date();if (date == null) {return null;}Calendar cal = Calendar.getInstance();cal.setTime(date);int dayofweek = cal.get(Calendar.DAY_OF_WEEK);if (dayofweek == 1) {dayofweek += 7;}cal.add(Calendar.DATE, 2 - dayofweek - 7);return getDayStartTime(cal.getTime());}//获取上周的结束时间public static Date getEndDayOfLastWeek(){Calendar cal = Calendar.getInstance();cal.setTime(getBeginDayOfLastWeek());cal.add(Calendar.DAY_OF_WEEK, 6);Date weekEndSta = cal.getTime();return getDayEndTime(weekEndSta);}//获取本月的开始时间public static Date getBeginDayOfMonth() {Calendar calendar = Calendar.getInstance();calendar.set(getNowYear(), getNowMonth() - 1, 1);return getDayStartTime(calendar.getTime());}//获取本月的结束时间public static Date getEndDayOfMonth() {Calendar calendar = Calendar.getInstance();calendar.set(getNowYear(), getNowMonth() - 1, 1);int day = calendar.getActualMaximum(5);calendar.set(getNowYear(), getNowMonth() - 1, day);return getDayEndTime(calendar.getTime());}//获取上月的开始时间public static Date getBeginDayOfLastMonth() {Calendar calendar = Calendar.getInstance();calendar.set(getNowYear(), getNowMonth() - 2, 1);return getDayStartTime(calendar.getTime());}//获取上月的结束时间public static Date getEndDayOfLastMonth() {Calendar calendar = Calendar.getInstance();calendar.set(getNowYear(), getNowMonth() - 2, 1);int day = calendar.getActualMaximum(5);calendar.set(getNowYear(), getNowMonth() - 2, day);return getDayEndTime(calendar.getTime());}//获取本年的开始时间public static java.util.Date getBeginDayOfYear() {Calendar cal = Calendar.getInstance();cal.set(Calendar.YEAR, getNowYear());// cal.setcal.set(Calendar.MONTH, Calendar.JANUARY);cal.set(Calendar.DATE, 1);return getDayStartTime(cal.getTime());}//获取本年的结束时间public static java.util.Date getEndDayOfYear() {Calendar cal = Calendar.getInstance();cal.set(Calendar.YEAR, getNowYear());cal.set(Calendar.MONTH, Calendar.DECEMBER);cal.set(Calendar.DATE, 31);return getDayEndTime(cal.getTime());}//获取某个日期的开始时间public static Timestamp getDayStartTime(Date d) {Calendar calendar = Calendar.getInstance();if(null != d) calendar.setTime(d);calendar.set(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH),    calendar.get(Calendar.DAY_OF_MONTH), 0, 0, 0);calendar.set(Calendar.MILLISECOND, 0);return new Timestamp(calendar.getTimeInMillis());}//获取某个日期的结束时间public static Timestamp getDayEndTime(Date d) {Calendar calendar = Calendar.getInstance();if(null != d) calendar.setTime(d);calendar.set(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH),    calendar.get(Calendar.DAY_OF_MONTH), 23, 59, 59);calendar.set(Calendar.MILLISECOND, 999);return new Timestamp(calendar.getTimeInMillis());}//获取今年是哪一年public static Integer getNowYear() {Date date = new Date();GregorianCalendar gc = (GregorianCalendar) Calendar.getInstance();gc.setTime(date);return Integer.valueOf(gc.get(1));}//获取本月是哪一月public static int getNowMonth() {Date date = new Date();GregorianCalendar gc = (GregorianCalendar) Calendar.getInstance();gc.setTime(date);return gc.get(2) + 1;}//两个日期相减得到的天数public static int getDiffDays(Date beginDate, Date endDate) {if (beginDate == null || endDate == null) {throw new IllegalArgumentException("getDiffDays param is null!");}long diff = (endDate.getTime() - beginDate.getTime())/ (1000 * 60 * 60 * 24);int days = new Long(diff).intValue();return days;}//两个日期相减得到的毫秒数public static long dateDiff(Date beginDate, Date endDate) {long date1ms = beginDate.getTime();long date2ms = endDate.getTime();return date2ms - date1ms;}//获取两个日期中的最大日期public static Date max(Date beginDate, Date endDate) {if (beginDate == null) {return endDate;}if (endDate == null) {return beginDate;}if (beginDate.after(endDate)) {return beginDate;}return endDate;}//获取两个日期中的最小日期public static Date min(Date beginDate, Date endDate) {if (beginDate == null) {return endDate;}if (endDate == null) {return beginDate;}if (beginDate.after(endDate)) {return endDate;}return beginDate;}//返回某月该季度的第一个月public static Date getFirstSeasonDate(Date date) {final int[] SEASON = { 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4 };Calendar cal = Calendar.getInstance();cal.setTime(date);int sean = SEASON[cal.get(Calendar.MONTH)];cal.set(Calendar.MONTH, sean * 3 - 3);return cal.getTime();}//返回某个日期下几天的日期public static Date getNextDay(Date date, int i) {Calendar cal = new GregorianCalendar();cal.setTime(date);cal.set(Calendar.DATE, cal.get(Calendar.DATE) + i);return cal.getTime();}//返回某个日期前几天的日期public static Date getFrontDay(Date date, int i) {Calendar cal = new GregorianCalendar();cal.setTime(date);cal.set(Calendar.DATE, cal.get(Calendar.DATE) - i);return cal.getTime();}//获取某年某月到某年某月按天的切片日期集合(间隔天数的集合)@SuppressWarnings({ "rawtypes", "unchecked" })public static List getTimeList(int beginYear, int beginMonth, int endYear,int endMonth, int k) {List list = new ArrayList();if (beginYear == endYear) {for (int j = beginMonth; j <= endMonth; j++) {list.add(getTimeList(beginYear, j, k));}} else {{for (int j = beginMonth; j < 12; j++) {list.add(getTimeList(beginYear, j, k));}for (int i = beginYear + 1; i < endYear; i++) {for (int j = 0; j < 12; j++) {list.add(getTimeList(i, j, k));}}for (int j = 0; j <= endMonth; j++) {list.add(getTimeList(endYear, j, k));}}}return list;}//获取某年某月按天切片日期集合(某个月间隔多少天的日期集合)@SuppressWarnings({ "unchecked", "rawtypes" })public static List getTimeList(int beginYear, int beginMonth, int k) {List list = new ArrayList();Calendar begincal = new GregorianCalendar(beginYear, beginMonth, 1);int max = begincal.getActualMaximum(Calendar.DATE);for (int i = 1; i < max; i = i + k) {list.add(begincal.getTime());begincal.add(Calendar.DATE, k);}begincal = new GregorianCalendar(beginYear, beginMonth, max);list.add(begincal.getTime());return list;}}
    
  • 调用

      import java.text.SimpleDateFormat;SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");String todayBegin = simpleDateFormat.format(DateUtils.getDayBegin());System.out.println(todayBegin );//输出结果为2017-10-26 00:00:00

Java 日期工具类(今天、昨天、本周、上周、本月、上月、本年及特定时间的开始时间和结束时间)相关推荐

  1. 【SQL】获取今天昨天本周上周本月上月本年去年的起止日期

    文章目录 SQL获取日期 SQL获取今天日期 SQL获取昨天日期 SQL获取上周日期,上周一,上周末 SQL获取本周日期,本周一,本周末 SQL获取上月日期,上月初,上月末 SQL获取本月日期,本月初 ...

  2. php 获取时间段 今天昨天本周上周本月上月本季度本年去年

    /**获取时间段* @param $name* @param $param*/ function gettimestamp($name = 'today',$param = ''){switch ($ ...

  3. java日期工具类DateUtil

    前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家.点击跳转到教程. DateUtil类 [java] view plain copy package com.util; ...

  4. java日期工具类(转载)

    import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; impor ...

  5. 使用JAVA来获得本日,本周,本月,本年的时间信息

    本文来编写一个例子来获得本日,本周,本月,本年的时间信息. 文章目录 程序实例 程序实例 程序实例 package cn.yiyiyun.zl.utils;import lombok.extern.s ...

  6. Java获取当年以及任意一年的第一天和最后一天 获取当天的开始时间和结束时间 自动获取去年的年份 常用于每年的数据统计

    @Slf4j public class DateTimeUtil {/*** 默认日期格式*/public static String DEFAULT_FORMAT = "yyyy-MM-d ...

  7. java日期工具类、日期格式校验、日期格式化

    文章目录 前言 日期格式校验 String转Date Date格式化为String类型 获取指定日期所在季度的第一天 获取指定日期所在季度的最后一天 LocalDate转Date 日期utils工具类 ...

  8. 用php获取本周,上周,本月,上月,本季度日期的代码

    1. 前言 ADODB 是 Active Data Objects Data Base 的简称,它是一种 PHP 存取数据库的函式组件.现在 SFS3 系统 (校园自由软件交流网学务系统) 计划的主持 ...

  9. mysql时间函数 date_format () 、date_sub()、YEERWEEK()、WEEKDAY(),另附本周 上周 本月 上月 本年等日期写法

    一.date_format () .date_sub().YEERWEEK().WEEKDAY() 1) "date_format()":格式化日期格式,"date_fo ...

最新文章

  1. c++两个vector合并_这才是真正的 Git:分支合并
  2. python全栈学习--day3
  3. DIV+CSS 网页布局之:三列布局
  4. nginx stream代理
  5. 3.26日第六次作业,第10章质量,11章人力
  6. codeigniter 操作 图标
  7. CoreData之增删改查
  8. 深度好文,如何培养真正的数据分析思维?附实践案例
  9. MyBatis(六)------MyBatis映射器(select元素、insert元素、update元素、select元素、sql元素)
  10. 软件工程师 算法工程师_如何像软件工程师一样撰写文章
  11. 使用procexp.exe查看线程详细信息
  12. 剑指offer刷题记录(C++)
  13. struts2拦截器的一个使用实例
  14. 为什么要学好数据结构和算法
  15. python微信小程序实例制作入门_python flask零基础打造微信小程序实战教程
  16. 卡尔曼滤波最完整公式推导
  17. sql语句面试经典题型
  18. MongoDB系列六(聚合).
  19. 【unity插件】Rewired插件-unity3d实现主机、PC手柄震动Vibration
  20. mysql压缩版安装教程 for Mac

热门文章

  1. 动画-Animation/@keyframes
  2. 【iOS】—— nil、Nil、NULL和NSNull学习
  3. 项目启动会发言稿(范文一)
  4. 武汉智能网联道路智能化建设规范
  5. 【NLP】讯飞英文学术论文分类挑战赛Top10开源多方案--6 提分方案
  6. PC端页面自适应不同分辨率的方法
  7. win10与Linux虚拟机进行文件共享
  8. 使用LitePal操作数据库
  9. 汇川伺服电机位置控制模式QT程序Demo实现
  10. 零基础非金融专业分享:怎么高效的复习备考FRM?