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

10,460 Responses

  1. Event reports表示:

    Hey there! I just wanted to ask if you ever have any issues with hackers? My last blog (wordpress) was hacked and I ended up losing several weeks of hard work due to no data backup. Do you have any methods to prevent hackers?

  2. Great goods from you, man. I’ve understand your stuff previous to and you’re just too fantastic. I really like what you’ve acquired here, really like what you are stating and the way in which you say it. You make it enjoyable and you still care for to keep it sensible. I cant wait to read much more from you. This is really a great site.

  3. Thca Flower表示:

    Howdy! I’m at work surfing around your blog from my new iphone 4! Just wanted to say I love reading through your blog and look forward to all your posts! Carry on the excellent work!

  4. Breaking news表示:

    I know this if off topic but I’m looking into starting my own blog and was wondering what all is required to get setup? I’m assuming having a blog like yours would cost a pretty penny? I’m not very web savvy so I’m not 100 sure. Any suggestions or advice would be greatly appreciated. Kudos

  5. Thca Flower表示:

    What?s Happening i am new to this, I stumbled upon this I have found It positively helpful and it has aided me out loads. I hope to contribute & assist other users like its aided me. Great job.

  6. Thca Flower表示:

    Great items from you, man. I have keep in mind your stuff previous to and you are simply extremely fantastic. I really like what you have acquired right here, certainly like what you are stating and the best way during which you assert it. You make it entertaining and you continue to care for to keep it sensible. I cant wait to read far more from you. That is really a great web site.

  7. I?ve read several good stuff here. Certainly worth bookmarking for revisiting. I wonder how much effort you put to make such a fantastic informative website.

  8. Hi there would you mind stating which blog platform you’re working with? I’m planning to start my own blog in the near future but I’m having a tough time selecting between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your design and style seems different then most blogs and I’m looking for something completely unique. P.S Sorry for being off-topic but I had to ask!

  9. I’m not sure why but this web site 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.

  10. Hey there would you mind sharing which blog platform you’re using? I’m going to start my own blog soon but I’m having a tough time selecting between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your design and style seems different then most blogs and I’m looking for something unique. P.S My apologies for being off-topic but I had to ask!

  11. We are a group of volunteers and starting a new scheme in our community. Your site offered us with valuable information to work on. You have done an impressive job and our whole community will be thankful to you.

  12. Hmm is anyone else encountering problems with the pictures on this blog loading? I’m trying to figure out if its a problem on my end or if it’s the blog. Any feed-back would be greatly appreciated.

  13. Как выбрать лучшую клинику стоматологии, прочитать.
    Уникальные методики лечения зубов, качественный уход за зубами.
    Эффективные способы обезболивания, изучить.
    Что нужно знать о здоровье полости рта, качественные советы стоматолога.
    Как избежать проблем с зубами, изучить.
    Лечение зубов без боли: реальность или миф?, качественные методики стоматологии.
    Как избежать неприятного запаха изо рта, предлагаем.
    стоматолог цілодобово стоматолог цілодобово .

  14. Sweet blog! I found it while searching on Yahoo News. Do you have any tips on how to get listed in Yahoo News? I’ve been trying for a while but I never seem to get there! Many thanks

  15. Thca Flower表示:

    An attention-grabbing dialogue is price comment. I feel that you should write more on this topic, it may not be a taboo topic however typically individuals are not sufficient to talk on such topics. To the next. Cheers

  16. Выберите стильные тактичные штаны для повседневной носки, сделанные из качественных материалов.
    Тактичные штаны: модные тренды этого сезона, для активного образа жизни.
    Советы по выбору тактичных штанов, чтобы выглядеть стильно в любой ситуации.
    Выберите удобные тактичные штаны для своего гардероба, и какие модели актуальны в этом сезоне.
    Тактичные штаны: выбор современного мужчины, и какие модели стоит выбрать для уникального стиля.
    штани військові з наколінниками https://vijskovitaktichnishtanu.kiev.ua/ .

  17. Thca Flower表示:

    I know this if off topic but I’m looking into starting my own weblog and was curious what all is required to get set up? I’m assuming having a blog like yours would cost a pretty penny? I’m not very internet smart so I’m not 100 certain. Any recommendations or advice would be greatly appreciated. Kudos

  18. Thca Flower表示:

    I truly appreciate this post. I have been looking all over for this! Thank goodness I found it on Bing. You have made my day! Thank you again

  19. Thca Flower表示:

    Hey would you mind stating which blog platform you’re using? I’m going to start my own blog in the near future but I’m having a hard time making a decision between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your design and style seems different then most blogs and I’m looking for something unique. P.S My apologies for being off-topic but I had to ask!

  20. Thca Flower表示:

    hey there and thank you for your information ? I have certainly picked up something new from right here. I did however expertise some technical points using this website, since I experienced to reload the web site many times previous to I could get it to load correctly. I had been wondering if your web hosting is OK? Not that I’m complaining, but slow loading instances times will very frequently affect your placement in google and could damage your quality score if ads and marketing with Adwords. Well I?m adding this RSS to my e-mail and can look out for a lot more of your respective fascinating content. Make sure you update this again very soon..

  21. Thca Flower表示:

    Hello! Would you mind if I share your blog with my myspace group? There’s a lot of people that I think would really appreciate your content. Please let me know. Cheers

  22. Thca Flower表示:

    You must participate in a contest for among the finest blogs on the web. I will recommend this website!

  23. What?s Happening i’m new to this, I stumbled upon this I have discovered It absolutely useful and it has helped me out loads. I hope to give a contribution & help different users like its helped me. Good job.

  24. bokep jilbab表示:

    What?s Happening i am new to this, I stumbled upon this I’ve discovered It positively useful and it has helped me out loads. I am hoping to give a contribution & aid different customers like its aided me. Good job.

  25. Thca Flower表示:

    Based on my research, after a foreclosures home is offered at an auction, it is common for that borrower to be able to still have some sort ofthat remaining balance on the bank loan. There are many loan providers who aim to have all charges and liens paid by the subsequent buyer. Nonetheless, depending on certain programs, polices, and state guidelines there may be a few loans that are not easily sorted out through the transfer of financial loans. Therefore, the responsibility still remains on the lender that has obtained his or her property in foreclosure process. Many thanks for sharing your thinking on this website.

  26. Thca Flower表示:

    Your home is valueble for me. Thanks!?

  27. Thca Flower表示:

    Thanks for the good writeup. It actually was a enjoyment account it. Look advanced to far delivered agreeable from you! By the way, how could we communicate?

  28. Thca Flower表示:

    I have realized that car insurance corporations know the vehicles which are susceptible to accidents along with other risks. In addition they know what kind of cars are prone to higher risk as well as higher risk they have the higher the premium amount. Understanding the straightforward basics associated with car insurance will allow you to choose the right type of insurance policy that will take care of the needs you have in case you get involved in an accident. Thanks for sharing a ideas on your blog.

  29. Thanks for the a new challenge you have discovered in your writing. One thing I’d like to discuss is that FSBO relationships are built eventually. By bringing out yourself to the owners the first saturday and sunday their FSBO is announced, before the masses start off calling on Wednesday, you produce a good association. By mailing them tools, educational resources, free reports, and forms, you become a good ally. If you take a personal fascination with them as well as their circumstances, you develop a solid connection that, on most occasions, pays off if the owners decide to go with an agent they know and trust – preferably you.

  30. Thca Flower表示:

    My partner and I absolutely love your blog and find nearly all of your post’s to be exactly what I’m looking for. Do you offer guest writers to write content for you? I wouldn’t mind producing a post or elaborating on a lot of the subjects you write in relation to here. Again, awesome web site!

發佈留言

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