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,380 Responses

  1. Отличный сайт! Всем рекомендую!каталог сайтов

  2. I have seen that smart real estate agents everywhere you go are Promoting. They are seeing that it’s more than just placing a sign in the front area. It’s really with regards to building connections with these retailers who someday will become purchasers. So, if you give your time and energy to helping these suppliers go it alone — the “Law associated with Reciprocity” kicks in. Thanks for your blog post.

  3. One thing I would like to say is that often car insurance cancelling is a feared experience and if you’re doing the proper things like a driver you won’t get one. A lot of people do get the notice that they have been officially dropped by the insurance company they then have to scramble to get extra insurance following a cancellation. Low-priced auto insurance rates tend to be hard to get from a cancellation. Having the main reasons regarding auto insurance cancellations can help drivers prevent completely losing in one of the most vital privileges accessible. Thanks for the ideas shared via your blog.

  4. Hello! I’ve been following your web site for some time now and finally got the bravery to go ahead and give you a shout out from Huffman Texas! Just wanted to mention keep up the good work!

  5. Yesterday, while I was at work, my cousin stole my iphone and tested to see if it can survive a twenty five foot drop, just so she can be a youtube sensation. My apple ipad is now broken and she has 83 views. I know this is completely off topic but I had to share it with someone!

  6. Thanks for the unique tips discussed on this web site. I have noticed that many insurance providers offer customers generous reductions if they favor to insure a few cars with them. A significant variety of households have got several cars these days, specially those with more mature teenage young children still residing at home, along with the savings in policies could soon increase. So it pays to look for a bargain.

  7. I’m in awe of the author’s capability to make complicated concepts understandable to readers of all backgrounds. This article is a testament to his expertise and commitment to providing useful insights. Thank you, author, for creating such an engaging and enlightening piece. It has been an absolute pleasure to read!

  8. Aw, this was a very nice post. In concept I wish to put in writing like this additionally ? taking time and precise effort to make an excellent article? however what can I say? I procrastinate alot and certainly not appear to get one thing done.

  9. It’s perfect time to make some plans for the future and it is time to be happy. I have read this post and if I could I want to suggest you few interesting things or tips. Maybe you could write next articles referring to this article. I desire to read more things about it!

  10. It?s in reality a great and useful piece of information. I?m happy that you shared this helpful info with us. Please keep us up to date like this. Thank you for sharing.

  11. Thanks for your write-up. Another element is that just being a photographer entails not only issues in recording award-winning photographs but in addition hardships in acquiring the best digicam suited to your needs and most especially challenges in maintaining the standard of your camera. It is very real and clear for those photography addicts that are directly into capturing this nature’s exciting scenes – the mountains, the actual forests, the particular wild and the seas. Visiting these exciting places certainly requires a camera that can meet the wild’s tough setting.

  12. Lazrmjr表示:

    Привет!
    Мы изготавливаем дипломы психологов, юристов, экономистов и любых других профессий по приятным тарифам.
    rushkas-diplomyxx.ru/kupit-diplom-vracha

  13. Nice blog right here! Additionally your site quite a bit up very fast! What web host are you using? Can I am getting your associate link for your host? I want my web site loaded up as fast as yours lol

  14. I just added this blog to my feed reader, great stuff. Cannot get enough!

  15. PokerTube表示:

    my web page – PokerTube

  16. I absolutely love your blog and find almost all of your post’s to be just what I’m looking for. Do you offer guest writers to write content to suit your needs? I wouldn’t mind producing a post or elaborating on a number of the subjects you write concerning here. Again, awesome web site!

  17. It’s the best time to make some plans for the future and it is time to be happy. I’ve read this post and if I could I wish to suggest you some interesting things or tips. Maybe you can write next articles referring to this article. I wish to read even more things about it!

  18. You could certainly see your enthusiasm within the paintings you write. The arena hopes for more passionate writers such as you who aren’t afraid to say how they believe. At all times go after your heart.

  19. Hello there, You have performed an incredible job. I?ll certainly digg it and individually suggest to my friends. I’m sure they will be benefited from this web site.

  20. I’m in awe of the author’s capability to make complex concepts approachable to readers of all backgrounds. This article is a testament to her expertise and commitment to providing useful insights. Thank you, author, for creating such an compelling and illuminating piece. It has been an incredible joy to read!

  21. I have noticed that rates for online degree authorities tend to be a great value. Like a full 4-year college Degree in Communication in the University of Phoenix Online consists of 60 credits with $515/credit or $30,900. Also American Intercontinental University Online comes with a Bachelors of Business Administration with a whole course element of 180 units and a cost of $30,560. Online degree learning has made taking your education so much easier because you might earn your own degree from the comfort in your home and when you finish from work. Thanks for all tips I have certainly learned from your blog.

  22. Thanks for your posting on this blog. From my own experience, occasionally softening up a photograph could possibly provide the photographer with a chunk of an artsy flare. Oftentimes however, that soft blur isn’t exactly what you had at heart and can sometimes spoil a normally good photograph, especially if you consider enlarging this.

  23. Hello there! Do you know if they make any plugins to help with SEO? I’m trying to get my blog to rank for some targeted keywords but I’m not seeing very good results. If you know of any please share. Many thanks!

  24. Unquestionably consider that that you stated. Your favorite reason seemed to be at the web the easiest factor to be aware of. I say to you, I certainly get annoyed whilst folks think about issues that they just do not realize about. You controlled to hit the nail upon the highest and also defined out the whole thing without having side effect , other folks can take a signal. Will likely be back to get more. Thanks

  25. Matthewchact表示:

    otc prednisone cream: prednisone 10 mg coupon – brand prednisone

  26. I’m not sure why but this weblog is loading extremely slow for me. Is anyone else having this issue or is it a problem on my end? I’ll check back later on and see if the problem still exists.

  27. An fascinating dialogue is worth comment. I believe that you must write extra on this topic, it might not be a taboo topic but typically persons are not enough to speak on such topics. To the next. Cheers

  28. Mazrpko表示:

    Здравствуйте!
    Как получить диплом о среднем образовании в Москве и других городах
    rushkadiplomik.ru

發佈留言

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