关于CalendarUtil获取时间的工具类

关于CalendarUtil项目中工具类的使用

这是我在自己项目中所编写的时间工具类。如有雷同,纯属巧合

功能 获取当前日期的上三个月日期

这其中有很多关于时间的长短使用的工具类,我会展示出最具代表性的代码,可以举一反三获取当前时间前后任意时间。仅供参考

功能:获取当前日期的上三个月日期

	public static String getMonth(Date date) throws ParseException{
	
	SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); 

    Calendar calendar = Calendar.getInstance(); 

    calendar.setTime(date); // 设置为当前时间 

    calendar.set(Calendar.MONTH, calendar.get(Calendar.MONTH) - 3); // 设置为上三个月 

    date = calendar.getTime(); 
	
    return dateFormat.format(date);
    
}

功能:获取当前日期的前一天日期

	public static String getDay(Date date) throws ParseException{
	
	SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); 

    Calendar calendar = Calendar.getInstance(); 

    calendar.setTime(date); // 设置为当前时间 

    calendar.set(Calendar.DAY_OF_MONTH, calendar.get(Calendar.DAY_OF_MONTH) - 1); // 获取当前日期的前一天日期

    date = calendar.getTime();
	
    return dateFormat.format(date);
    
}

功能:获取当前日期的一年后日期

public static String getYear(Date date) throws ParseException{
	
	SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); 

    Calendar calendar = Calendar.getInstance(); 

    calendar.setTime(date); // 设置为当前时间 

    calendar.set(Calendar.YEAR, calendar.get(Calendar.YEAR) + 1); // 获取当前日期的前一天日期

    calendar.set(Calendar.DAY_OF_MONTH, calendar.get(Calendar.DAY_OF_MONTH) - 1); // 获取当前日期的前一天日期
    
    date = calendar.getTime(); 
	
    return dateFormat.format(date);
    
}

备注

如果有哪位使用请标明出处!

package com.hexiang.utils; import java.text.SimpleDateFormat; import java.util.*; public class CalendarUtil { public static void main(String args[]) { System.out.println("First day of week is : " + new SimpleDateFormat("yyyy-MM-dd") .format(getFirstDateByWeek(new Date()))); System.out.println("Last day of week is : " + new SimpleDateFormat("yyyy-MM-dd") .format(getLastDateByWeek(new Date()))); System.out.println("First day of month is : " + new SimpleDateFormat("yyyy-MM-dd") .format(getFirstDateByMonth(new Date()))); System.out.println("Last day of month is : " + new SimpleDateFormat("yyyy-MM-dd") .format(getLastDateByMonth(new Date()))); } /** * 获得所在星期的第一天 */ public static Date getFirstDateByWeek(Date date) { Calendar now = Calendar.getInstance(); now.setTime(date); int today = now.get(Calendar.DAY_OF_WEEK); int first_day_of_week = now.get(Calendar.DATE) + 2 - today; // 星期一 now.set(Calendar.DATE, first_day_of_week); return now.getTime(); } /** * 获得所在星期的最后一天 */ public static Date getLastDateByWeek(Date date) { Calendar now = Calendar.getInstance(); now.setTime(date); int today = now.get(Calendar.DAY_OF_WEEK); int first_day_of_week = now.get(Calendar.DATE) + 2 - today; // 星期一 int last_day_of_week = first_day_of_week + 6; // 星期日 now.set(Calendar.DATE, last_day_of_week); return now.getTime(); } /** * 获得所在月份的最后一天 * @param 当前月份所在的时间 * @return 月份的最后一天 */ public static Date getLastDateByMonth(Date date) { Calendar now = Calendar.getInstance(); now.setTime(date); now.set(Calendar.MONTH, now.get(Calendar.MONTH) + 1); now.set(Calendar.DATE, 1); now.set(Calendar.DATE, now.get(Calendar.DATE) - 1); now.set(Calendar.HOUR, 11); now.set(Calendar.MINUTE, 59); now.set(Calendar.SECOND, 59); return now.getTime(); } /** * 获得所在月份的第一天 * @param 当前月份所在的时间 * @return 月份的第一天 */ public static Date getFirstDateByMonth(Date date) { Calendar now = Calendar.getInstance(); now.setTime(date); now.set(Calendar.DATE, 0); now.set(Calendar.HOUR, 12); now.set(Calendar.MINUTE, 0); now.set(Calendar.SECOND, 0); return now.getTime(); } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值