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

27,476 Responses

  1. Richardprurf表示:

    https://kamagrameilleurprix.shop/# pharmacie en ligne sans ordonnance
    acheter mГ©dicament en ligne sans ordonnance

  2. WilsonVah表示:

    pharmacie en ligne livraison europe: acheter kamagra site fiable – pharmacie en ligne pas cher

  3. I think this is one of the most vital information for me. And i’m glad reading your article. But want to remark on some general things, The website style is wonderful, the articles is really great : D. Good job, cheers

  4. Magnificent goods from you, man. I have understand your stuff previous to and you’re just too magnificent. I actually like what you’ve acquired here, certainly like what you’re saying and the way in which you say it. You make it enjoyable and you still care for to keep it smart. I cant wait to read much more from you. This is actually a wonderful site.

  5. eski oyma表示:

    Thanks for your publiction. Another point is that to be a photographer includes not only trouble in taking award-winning photographs but hardships in establishing the best photographic camera suited to your needs and most especially problems in maintaining the quality of your camera. That is very accurate and apparent for those photography enthusiasts that are in to capturing the actual nature’s engaging scenes — the mountains, the actual forests, the wild or maybe the seas. Visiting these daring places undoubtedly requires a digital camera that can live up to the wild’s nasty environments.

  6. One other issue is when you are in a circumstances where you do not possess a co-signer then you may really want to try to exhaust all of your money for college options. You could find many awards and other scholarships that will present you with funds to help you with university expenses. Thank you for the post.

  7. Thank you ever so for you blog.Much thanks again. Really Great.

  8. I have read some good stuff here. Certainly worth bookmarking for revisiting. I surprise how much effort you put to create such a magnificent informative website.

  9. Along with almost everything that appears to be developing within this subject matter, many of your opinions happen to be very refreshing. Having said that, I beg your pardon, because I can not give credence to your entire strategy, all be it exhilarating none the less. It would seem to us that your opinions are generally not completely justified and in reality you are your self not entirely convinced of the point. In any event I did enjoy reading it.

  10. Richardprurf表示:

    http://viagrameilleurprix.com/# Viagra sans ordonnance 24h suisse
    trouver un mГ©dicament en pharmacie

  11. Thanks for your publication. I also think that laptop computers are getting to be more and more popular currently, and now are often the only sort of computer utilised in a household. The reason is that at the same time potentially they are becoming more and more affordable, their processing power keeps growing to the point where they may be as robust as personal computers coming from just a few in years past.

  12. Jacobbep表示:

    pharmacie en ligne sans ordonnance https://kamagrameilleurprix.shop/# pharmacie en ligne livraison europe

  13. You can certainly see your skills within the paintings you write. The sector hopes for more passionate writers such as you who are not afraid to mention how they believe. Always follow your heart.

  14. Does your blog have a contact page? I’m having a tough time locating it but, I’d like to send you an email. I’ve got some suggestions for your blog you might be interested in hearing. Either way, great website and I look forward to seeing it grow over time.

  15. Jacobbep表示:

    pharmacie en ligne https://tadalafilmeilleurprix.com/# pharmacies en ligne certifiГ©es

  16. Удобное управление шторами с помощью электрокарниза и таймера, экономьте энергию и время.
    Дизайнерское решение для вашего дома – электрокарниз с таймером, сделает вашу жизнь проще и приятнее.
    Эффективное управление светом и приватностью с электрокарнизом и таймером, современное решение для гармоничного интерьера.
    Оптимальное решение для автоматизации штор – электрокарниз с таймером, который упростит вашу жизнь и сделает ее более комфортной.
    Дизайнерское решение для современного дома – электрокарниз с таймером, позволит вам экономить время и силы.
    Программируемый карниз для штор https://prokarniz50.ru/ .

  17. Richardprurf表示:

    https://viagrameilleurprix.com/# Viagra femme ou trouver
    Pharmacie sans ordonnance

  18. Hello there, just changed into alert to your blog through Google, and found that it’s really informative. I am going to be careful for brussels. I will appreciate for those who proceed this in future. Lots of people might be benefited out of your writing. Cheers!

  19. Richardprurf表示:

    http://tadalafilmeilleurprix.com/# acheter mГ©dicament en ligne sans ordonnance
    pharmacie en ligne avec ordonnance

  20. NorbertKep表示:

    pharmacie en ligne france pas cher: kamagra livraison 24h – pharmacie en ligne pas cher

  21. WilsonVah表示:

    pharmacie en ligne france livraison internationale: kamagra livraison 24h – Pharmacie Internationale en ligne

  22. WilsonVah表示:

    SildГ©nafil 100 mg sans ordonnance: viagra sans ordonnance – Viagra vente libre pays

  23. Jamesnob表示:

    Откройте двери в изысканности и тайны, где возможно всё. Присоединяйтесь к “Проститутки Москва” в Telegram вас ждет уникальная подборка самых восхитительных и желанных девушек Москвы. Поверьте, что время, проведенное вместе — это возможность ощутить незабываемые эмоции и открыть для себя новые грани удовольствия.

    Москва — это не только город с богатой историей, но и центр притяжения, где Шлюхи ждут вас. Наша платформа объединяет только самых опытных в сфере сопровождения, способных воплотить ваши мечты. У нас легко найти Шлюхи, которая идеально подойдет вам.

    Индивидуалки, представленные в нашем канале, обладают не только выдающейся внешностью, но и искусством создавать комфорт и доверие. Каждая из них знает, как сделать ваше время особенным, и создаст для вас особенную атмосферу. Доверяя нам, вы оцениваете высокий уровень обслуживания, полную конфиденциальность и уверенность. что ваше желание исполнится.

    Проститутки, которых мы предлагаем, проходят строгий отбор, чтобы вы получили максимум удовольствия. Вы можете быть уверены в их компетентности и честности. Они — это не только шикарная упаковка, но и способность дарить чувственные удовольствия. Благодаря удобному интерфейсу нашего канала вы без труда посмотрите профили, выбрать собеседницу по душе и мгновенно назначить встречу.

    Наш Telegram-канал “Проститутки Москва” ваш проводник в мир наслаждений. Мы знаем, что у каждого свои предпочтения, поэтому у нас большой выбор, чтобы угодить каждому. У нас есть Шлюхи для ценителей элегантности и для любителей экспериментов, которые подарят вам незабываемые эмоции.

    Забудьте о рутине и погрузитесь в атмосферу роскоши и комфорта. Вызовите Индивидуалки из нашего канала, и ваша жизнь заиграет новыми красками. Почувствуйте себя королем, наслаждаясь обществом прекрасных девушек, которые ждут вашего приглашения.

    Подробнее по ссылке телеграм: https://t.me/s/prostitutox и определитесь со своим выбором. Откройте для себя мир новых впечатлений, которые останутся в вашей памяти навсегда. Шлюхи готовы встретиться с вами, чтобы вы получили максимум удовольствия.

    Окунитесь в мир удовольствий и сделайте свою жизнь ярче. Москва полна загадок и соблазнов, и мы поможем вам найти то, что вы ищете. Пора наслаждаться жизнью — выбирайте лучших, приглашайте тех, кто знает толк в удовольствиях.

    Наши девушки сделают вашу жизнь ярче, и каждый вечер будет особенным. Присоединяйтесь к “Проститутки Москва” и откройте новые горизонты удовольствия в сердце столицы.

  24. I’ve learned several important things through your post. I might also like to convey that there may be situation where you will apply for a loan and do not need a cosigner such as a Government Student Aid Loan. When you are getting financing through a classic banker then you need to be prepared to have a cosigner ready to allow you to. The lenders will certainly base their own decision over a few aspects but the largest will be your credit worthiness. There are some lenders that will as well look at your job history and decide based on that but in many instances it will hinge on your score.

  25. WilsonVah表示:

    pharmacie en ligne france livraison belgique: Tadalafil sans ordonnance en ligne – Pharmacie en ligne livraison Europe

  26. NorbertKep表示:

    Achat mГ©dicament en ligne fiable: pharmacie en ligne pas cher – pharmacie en ligne avec ordonnance

  27. I’m extremely impressed with your writing skills and also with the layout on your blog. Is this a paid theme or did you modify it yourself? Anyway keep up the excellent quality writing, it?s rare to see a nice blog like this one nowadays..

  28. visit here表示:

    I do agree with all the ideas you’ve presented in your post. They are really convincing and will definitely work. Still, the posts are too short for newbies. Could you please extend them a bit from next time? Thanks for the post.

  29. I don?t even know how I ended up here, but I thought this post was great. I don’t know who you are but certainly you are going to a famous blogger if you are not already 😉 Cheers!

  30. I have mastered some new items from your web site about computer systems. Another thing I’ve always considered is that laptop computers have become something that each house must have for some reasons. They supply you with convenient ways in which to organize the home, pay bills, go shopping, study, pay attention to music and perhaps watch tv series. An innovative approach to complete these tasks is to use a computer. These pcs are mobile ones, small, powerful and portable.

發佈留言

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