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

  1. JamesKix表示:

    Судя по всему, происходящее с «Бествей» и «Гермесом» – это нечто гораздо более грязное и зловещее, чем просто коррупция. Это махинации на высшем уровне, где выигрывают только те, кто находится внутри игры. Подделанные документы, незаконные аресты и массовые обвинения – всё это кажется лишь вершиной айсберга. Скорее всего, за всем этим стоят крупные интересы и амбиции, которые выходят далеко за рамки обычной коррупции. Это не просто попытка захвата активов или политический пиар, это попытка контролировать финансовые потоки и манипулировать ими в своих интересах. Весьма вероятно, что это лишь вершина айсберга, и за всем этим скрывается что-то гораздо более грязное и коварное. Если даже наша правоохранительная система, которая обязана защищать нас от преступников, сами становятся преступниками, то куда нам идти дальше? Это более чем просто нарушение закона или превышение полномочий – это предательство нашего доверия и надежды на справедливость. Это какой-то ад, в котором правда и справедливость утрачивают свой смысл, а те, кто должен защищать закон, сами его нарушают. Наши так называемые правоохранители превратились в организованную преступную группировку, которая использует свои полномочия для собственных корыстных целей. И это ужасно. Это нечто, что не должно существовать в цивилизованном обществе.

  2. Diplomi_ljEa表示:

    Добрый день!
    Купить документ о получении высшего образования вы сможете в нашей компании в Москве.
    ast-diplom.com/kupit-diplom-perm

  3. Thanks for your post. What I want to say is that while searching for a good on the net electronics go shopping, look for a web page with full information on critical factors such as the privacy statement, security details, any payment methods, and other terms plus policies. Usually take time to browse the help along with FAQ segments to get a greater idea of how a shop functions, what they can do for you, and ways in which you can take full advantage of the features.

  4. I do agree with all the ideas you have presented in your post. They are very convincing and will certainly work. Still, the posts are too short for starters. Could you please extend them a bit from next time? Thanks for the post.

  5. Its like you read my mind! You appear to know a lot about this, like you wrote the book in it or something. I think that you could do with a few pics to drive the message home a bit, but instead of that, this is magnificent blog. An excellent read. I’ll certainly be back.

  6. Diplomi_qzEa表示:

    Здравствуйте!
    Приобрести документ ВУЗа вы можете в нашей компании в столице.
    diplomyx.com/kupit-diplom-tehnikuma-kolledzha 

  7. Pretty nice post. I just stumbled upon your weblog and wanted to say that I’ve really enjoyed surfing around your blog posts. In any case I?ll be subscribing to your rss feed and I hope you write again soon!

  8. I have mastered some new items from your website about desktops. Another thing I have always assumed is that computers have become a product that each residence must have for most reasons. They provide convenient ways to organize homes, pay bills, search for information, study, focus on music and even watch tv series. An innovative way to complete all of these tasks is to use a laptop computer. These computer systems are mobile ones, small, highly effective and easily transportable.

  9. Hello! Someone in my Myspace group shared this site with us so I came to check it out. I’m definitely loving the information. I’m bookmarking and will be tweeting this to my followers! Terrific blog and superb style and design.

  10. Отличный сайт! Всем рекомендую!печать этикеток

  11. It is truly a nice and helpful piece of information. I?m happy that you simply shared this useful info with us. Please keep us informed like this. Thanks for sharing.

  12. Its such as you read my thoughts! You appear to grasp so much approximately this, such as you wrote the ebook in it or something. I think that you can do with some p.c. to power the message house a little bit, however instead of that, that is excellent blog. A great read. I’ll certainly be back.

  13. Thanks for the suggestions shared on your own blog. Yet another thing I would like to express is that weight loss is not information on going on a dietary fad and trying to reduce as much weight as you can in a set period of time. The most effective way to burn fat is by having it slowly and right after some basic suggestions which can allow you to make the most from a attempt to lose weight. You may recognize and be following many of these tips, nevertheless reinforcing information never hurts.

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

  15. Lazretg表示:

    Привет!
    Мы готовы предложить дипломы любой профессии по приятным ценам.
    onlinekinospace.ru/kupite-diplom-dlya-vashego-budushhego

  16. hello!,I like your writing so much! share we communicate more about your post on AOL? I require an expert on this area to solve my problem. Maybe that’s you! Looking forward to see you.

  17. Thanks , I’ve just been looking for information about this subject for ages and yours is the best I have came upon till now. But, what concerning the conclusion? Are you sure in regards to the source?

  18. I used to be very pleased to search out this net-site.I wanted to thanks for your time for this excellent learn!! I definitely enjoying each little bit of it and I’ve you bookmarked to check out new stuff you weblog post.

  19. Awesome blog! Is your theme custom made or did you download it from somewhere? A theme like yours with a few simple adjustements would really make my blog jump out. Please let me know where you got your theme. Thanks

  20. Thanks for your publication on the travel industry. I will also like contribute that if your senior taking into consideration traveling, it’s absolutely vital that you buy traveling insurance for elderly people. When traveling, older persons are at biggest risk of getting a medical emergency. Having the right insurance policy package on your age group can protect your health and give you peace of mind.

  21. I’ve been browsing online more than three hours nowadays, yet I by no means found any interesting article like yours. It is beautiful value sufficient for me. Personally, if all webmasters and bloggers made excellent content material as you did, the internet might be a lot more helpful than ever before.

  22. Hmm it appears like your website ate my first comment (it was super long) so I guess I’ll just sum it up what I submitted and say, I’m thoroughly enjoying your blog. I too am an aspiring blog blogger but I’m still new to everything. Do you have any tips and hints for beginner blog writers? I’d really appreciate it.

  23. Hi there! I know this is kind of off topic but I was wondering if you knew where I could find a captcha plugin for my comment form? I’m using the same blog platform as yours and I’m having problems finding one? Thanks a lot!

  24. Yet another thing is that when you are evaluating a good internet electronics retail outlet, look for online shops that are continuously updated, maintaining up-to-date with the most up-to-date products, the perfect deals, and also helpful information on product or service. This will make certain you are getting through a shop that really stays over the competition and gives you things to make educated, well-informed electronics acquisitions. Thanks for the essential tips I have learned from the blog.

  25. Qvnsmt表示:

    how to get finax without a prescription – finax over the counter buy uroxatral 10 mg generic

  26. Lazrseb表示:

    Добрый день!
    Мы предлагаем дипломы любых профессий по доступным тарифам.
    avtoweek2016.ru/legalnoe-priobretenie-diploma-onlayn/

  27. Отличный сайт! Всем рекомендую!бумажные пакеты

  28. Dnrtqrt表示:

    Привет!
    Купить документ о получении высшего образования можно в нашей компании.
    ast-diplom.com/otzyvy
    Успешной учебы!

  29. RobertSoish表示:

    where to buy clomid pill: can i order cheap clomid without rx – where can i get clomid without prescription

  30. analpornohd.com表示:

    I’m extremely pleased to discover this website. I wanted to thank you for ones time just for this fantastic read!
    My website: russkoeporno365

發佈留言

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