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...

32,653 Responses

  1. It?s actually a great and useful piece of information. I am glad that you shared this helpful information with us. Please keep us up to date like this. Thanks for sharing.

  2. TerryDus表示:

    http://tadalafileasybuy.com/# Tadalafil Easy Buy

  3. Kennethslity表示:

    https://kamagrakopen.pro/# Kamagra Kopen Online

  4. Richardnak表示:

    цифровой магазин аккаунтов https://akkaunt-market.ru

  5. Good post. I study something tougher on different blogs everyday. It can always be stimulating to learn content material from different writers and observe a bit of one thing from their store. I?d favor to make use of some with the content on my blog whether you don?t mind. Natually I?ll offer you a link in your internet blog. Thanks for sharing.

  6. WilliamNop表示:

    Kamagra Kopen: KamagraKopen.pro – kamagra kopen nederland

  7. GregoryJough表示:

    kamagra jelly kopen: kamagra kopen nederland – kamagra kopen nederland

  8. raz flavors表示:

    One important thing is that if you are searching for a student loan you may find that you will need a co-signer. There are many circumstances where this is correct because you could find that you do not possess a past credit standing so the mortgage lender will require that you have someone cosign the financial loan for you. Good post.

  9. raz vape表示:

    Great website. Plenty of useful information here. I?m sending it to a few pals ans additionally sharing in delicious. And obviously, thank you for your sweat!

  10. In 1758, Chew left the Quakers completely and joined the Church of England; he and his wife had their son Benjamin baptized that yr at Christ Church.

  11. Dwayneseisa表示:

    buy generic 100mg viagra online Generic 100mg Easy cheap viagra

  12. TerryDus表示:

    https://generic100mgeasy.com/# Cheap Sildenafil 100mg

  13. raz flavors表示:

    Good ? I should certainly pronounce, impressed with your site. I had no trouble navigating through all tabs as well as related information ended up being truly simple to do to access. I recently found what I hoped for before you know it in the least. Quite unusual. Is likely to appreciate it for those who add forums or anything, web site theme . a tones way for your customer to communicate. Nice task..

  14. Ryvkmu表示:

    medrol 8 mg over the counter – buy methylprednisolone without a prescription aristocort generic

  15. Hello! I know this is kinda off topic but I’d figured I’d ask. Would you be interested in trading links or maybe guest writing a blog article or vice-versa? My blog covers a lot of the same subjects as yours and I feel we could greatly benefit from each other. If you are interested feel free to send me an e-mail. I look forward to hearing from you! Great blog by the way!

  16. Kennethslity表示:

    http://tadalafileasybuy.com/# cialis without a doctor prescription

  17. Aw, this was a very nice post. In concept I wish to put in writing like this moreover ? taking time and actual effort to make a very good article? but what can I say? I procrastinate alot and on no account seem to get something done.

  18. Fantastic web site. Lots of helpful info here. I?m sending it to some pals ans additionally sharing in delicious. And naturally, thanks in your sweat!

  19. WilliamNop表示:

    KamagraKopen.pro: KamagraKopen.pro – kamagra kopen nederland

  20. pdacenter.ru – сервис по ремонту бытовой техники
    Ремонт кондиционеров в Тюмени в официальном сервисном центре PDACENTER.
    Наши инженеры выполняют ремонт любой сложности по дотупным ценам!

  21. TerryDus表示:

    https://tadalafileasybuy.shop/# TadalafilEasyBuy.com

  22. GregoryJough表示:

    Tadalafil Easy Buy: cialis without a doctor prescription – cialis without a doctor prescription

  23. raz vapes表示:

    I can’t express how much I admire the effort the author has put into creating this remarkable piece of content. The clarity of the writing, the depth of analysis, and the wealth of information offered are simply remarkable. His enthusiasm for the subject is obvious, and it has certainly made an impact with me. Thank you, author, for offering your knowledge and enlightening our lives with this extraordinary article!

  24. WilliamNop表示:

    TadalafilEasyBuy.com: Tadalafil Easy Buy – TadalafilEasyBuy.com

  25. One thing I would really like to say is that before obtaining more personal computer memory, look into the machine into which it would be installed. Should the machine is actually running Windows XP, for instance, the memory limit is 3.25GB. Setting up over this would just constitute a waste. Make sure that one’s mother board can handle this upgrade amount, as well. Great blog post.

發佈留言

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