Java 各種時間上的操作範例

分享一些在專案中用到JAVA與日期相關的操作,包括:

  • 取得目前的年、月、日
  • 判斷兩個日期的大小
  • 計算兩個日期的差距
  • 取得昨天的日期
  • 取得上個月的開始與結束日
package CDIT.stanley;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.Calendar;

public class dateOperation {
	
	public static int differentDays(Date date1,Date date2){
        Calendar cal1 = Calendar.getInstance();
        cal1.setTime(date1);
        
        Calendar cal2 = Calendar.getInstance();
        cal2.setTime(date2);
        int day1= cal1.get(Calendar.DAY_OF_YEAR);
        int day2 = cal2.get(Calendar.DAY_OF_YEAR);
        
        int year1 = cal1.get(Calendar.YEAR);
        int year2 = cal2.get(Calendar.YEAR);
        if(year1 != year2){
            int timeDistance = 0 ;
            for(int i = year1 ; i < year2 ; i ++){
                if(i%4==0 && i%100!=0 || i%400==0){
                    timeDistance += 366;
                }
                else{
                    timeDistance += 365;
                }
            }
            return timeDistance + (day2-day1) ;
        }
        else{
            return day2-day1;
        }
    }
	
	public static Date getFirstMonthDay(Calendar calendar) {
		calendar.set(Calendar.DATE, calendar.getActualMinimum(Calendar.DATE));
		return calendar.getTime();
	}

	public static Date getLastMonthDay(Calendar calendar) {
		calendar.set(Calendar.DATE, calendar.getActualMaximum(Calendar.DATE));
		return calendar.getTime();
	}
	
    public static void main(String[] args) throws ParseException {
    	
    	//取得目前的年、月、日
		Calendar calendar = Calendar.getInstance();	
		System.out.println("今天是" + calendar.get(Calendar.YEAR) + "年" + (calendar.get(Calendar.MONTH) + 1) + "月" + calendar.get(Calendar.DAY_OF_MONTH) + "日");
		System.out.println("==================================================");
    	//輸出:今天是2017年8月24日
		
		//判斷兩個日期的大小
    	SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd", Locale.TAIWAN);
    	Date date1 = sdf.parse("2017-08-23");
    	Date date2 = sdf.parse("2016-09-22");
		System.out.println("Date1 < Date2 : " + date1.before(date2));
		System.out.println("Date1 > Date2 : " + date1.after(date2));
		System.out.println("==================================================");
		//輸出:Date1 < Date2 : false、Date1 > Date2 : true
		
		//計算兩個日期的差距
		System.out.println("Date1 & Date2 差距 : " + differentDays(date1 , date2) + "天");
		System.out.println("==================================================");
		//輸出:Date1 & Date2 差距 : 31天
		
		//取得昨天的日期
		calendar = Calendar.getInstance();
		calendar.add(Calendar.DATE, -1);
		String  yestedayDate = sdf.format(calendar.getTime());
		System.out.println("昨天是" + yestedayDate);
		System.out.println("==================================================");
		//輸出:昨天是2017-08-23
		
		//取得上個月的開始與結束日
		calendar = Calendar.getInstance();
		calendar.add(Calendar.MONTH,-1);
		String monthDayFirst = sdf.format(getFirstMonthDay(calendar));
		String monthDayLast = sdf.format(getLastMonthDay(calendar));
		System.out.println("上個月的第一天是" + monthDayFirst);
		System.out.println("上個月的最後一天是" + monthDayLast);
		System.out.println("==================================================");
		//輸出:上個月的第一天是2017-07-01、上個月的最後一天是2017-07-31
    }
}

You may also like...

11,173 Responses

  1. Henryfet表示:

    zithromax 250 mg tablet price: buy zithromax canada – zithromax online pharmacy canada

  2. Tqwxqm表示:

    viagra professional dublin – eriacta madam levitra oral jelly assume

  3. Henryfet表示:

    prednisone 30: prednisone 20 mg tablets – prednisone 20 mg tablet

  4. MarvinRoave表示:

    canada neurontin 100mg lowest price neurontin prescription online neurontin 300 mg caps

  5. EarnestAvada表示:

    Hello there! This is my first comment here so I just wanted to give a quick shout out and tell you I genuinely enjoy reading through your blog posts. Can you suggest any other blogs/websites/forums that deal with the same topics? Appreciate it!
    https://emplois.fhpmco.fr/author/singlepump7/

  6. Richardorele表示:

    buy cheap generic zithromax: generic zithromax azithromycin – zithromax 500mg price

  7. Billyved表示:

    http://prednisoned.online/# prednisone pharmacy prices

  8. Отличный сайт! Тут Вы можете найтимайнкрафт сервера

  9. Billyved表示:

    https://gabapentinneurontin.pro/# gabapentin medication

  10. Henryfet表示:

    100mg doxycycline: doxycycline vibramycin – doxycycline 200 mg

  11. Billyved表示:

    https://doxycyclinea.online/# doxycycline tetracycline

  12. MarvinRoave表示:

    prednisone brand name in india prednisone 50mg cost prednisone 5 mg tablet cost

  13. Henryfet表示:

    zithromax cost: buy zithromax – buy zithromax without presc

  14. Henryfet表示:

    prednisone 4mg tab: prednisone 10mg canada – where to buy prednisone 20mg

  15. Richardorele表示:

    buy zithromax online fast shipping: where can i buy zithromax in canada – order zithromax over the counter

  16. Charleselila表示:

    how to buy amoxicillin online: amoxicillin tablets in india – amoxicillin generic brand

  17. Henryfet表示:

    zithromax coupon: zithromax 500 mg lowest price online – zithromax buy online no prescription

  18. Recomendo uma casa de apostas confiavel 1win

  19. Melhor casa de apostas, recomendado 1win

  20. Henryfet表示:

    buy doxycycline without prescription uk: how to order doxycycline – doxycycline hyc 100mg

  21. Richardorele表示:

    can you buy zithromax online: buy cheap generic zithromax – zithromax 250 mg tablet price

  22. Charleselila表示:

    generic doxycycline: doxycycline 100mg online – doxycycline hyclate 100 mg cap

  23. Charleselila表示:

    how can i get prednisone online without a prescription: prednisone tablets canada – prednisone uk

  24. Henryfet表示:

    where can you buy zithromax: buy zithromax online fast shipping – zithromax azithromycin

  25. Henryfet表示:

    where can you buy zithromax: zithromax 250 – zithromax online no prescription

  26. Richardorele表示:

    zithromax prescription in canada: zithromax canadian pharmacy – zithromax 500 without prescription

  27. Jdlrte484mot表示:

    O melhor site, eu o recomendo 1win

  28. Henryfet表示:

    amoxicillin pharmacy price: amoxicillin online canada – canadian pharmacy amoxicillin

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。