程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Java基礎之Calendar類,java基礎calendar

Java基礎之Calendar類,java基礎calendar

編輯:JAVA綜合教程

Java基礎之Calendar類,java基礎calendar


Calendar 類是一個抽象類,它為特定瞬間與一組諸如 YEAR、MONTH、DAY_OF_MONTH、HOUR 等日歷字段之間的轉換提供了一些方法,並為操作日歷字段(例如獲得下星期的日期)提供了一些方法。瞬間可用毫秒值來表示,它是距歷元(即格林威治標准時間 1970 年 1 月 1 日的 00:00:00.000,格裡高利歷)的偏移量。與其他語言環境敏感一樣,Calendar 提供了一個類方法 getInstance,以獲得此類型的一個通用的對象。Calendar的getInstance 方法返回一個Calendar對象(該對象為Calendar的子類對象),其日歷字段已由當前日期和時間初始化:

Calendar rightNow = Calendar.getInstance();

源碼實現:

1 public static Calendar getInstance()
2 {
3     Calendar cal = createCalendar(TimeZone.getDefaultRef(), Locale.getDefault(Locale.Category.FORMAT));
4     cal.sharedZone = true;
5     return cal;
6 }
 1 private static Calendar createCalendar(TimeZone zone,
 2                                            Locale aLocale)
 3     {
 4         Calendar cal = null;
 5 
 6         String caltype = aLocale.getUnicodeLocaleType("ca");
 7         if (caltype == null) {
 8             // Calendar type is not specified.
 9             // If the specified locale is a Thai locale,
10             // returns a BuddhistCalendar instance.
11             if ("th".equals(aLocale.getLanguage())
12                     && ("TH".equals(aLocale.getCountry()))) {
13                 cal = new BuddhistCalendar(zone, aLocale);
14             } else {
15                 cal = new GregorianCalendar(zone, aLocale);
16             }
17         } else if (caltype.equals("japanese")) {
18             cal = new JapaneseImperialCalendar(zone, aLocale);
19         } else if (caltype.equals("buddhist")) {
20             cal = new BuddhistCalendar(zone, aLocale);
21         } else {
22             // Unsupported calendar type.
23             // Use Gregorian calendar as a fallback.
24             cal = new GregorianCalendar(zone, aLocale);
25         }
26 
27         return cal;
28     }

根據不同地區返回不同的日期子類。

下面看看Calendar常用的方法

 1 package com.test.calendar;
 2 
 3 import java.util.Calendar;
 4 
 5 import org.junit.Before;
 6 import org.junit.Test;
 7 
 8 public class CalendarDemo {
 9     Calendar calendar = null;
10 
11     @Before
12     public void test() {
13         calendar = Calendar.getInstance();
14     }
15 
16     // 基本用法,獲取年月日時分秒星期
17     @Test
18     public void test1() {
19         // 獲取年
20         int year = calendar.get(Calendar.YEAR);
21 
22         // 獲取月,這裡需要需要月份的范圍為0~11,因此獲取月份的時候需要+1才是當前月份值
23         int month = calendar.get(Calendar.MONTH) + 1;
24 
25         // 獲取日
26         int day = calendar.get(Calendar.DAY_OF_MONTH);
27 
28         // 獲取時
29         int hour = calendar.get(Calendar.HOUR);
30         // int hour = calendar.get(Calendar.HOUR_OF_DAY); // 24小時表示
31 
32         // 獲取分
33         int minute = calendar.get(Calendar.MINUTE);
34 
35         // 獲取秒
36         int second = calendar.get(Calendar.SECOND);
37 
38         // 星期,英語國家星期從星期日開始計算
39         int weekday = calendar.get(Calendar.DAY_OF_WEEK);
40 
41         System.out.println("現在是" + year + "年" + month + "月" + day + "日" + hour
42                 + "時" + minute + "分" + second + "秒" + "星期" + weekday);
43     }
44 
45     // 一年後的今天
46     @Test
47     public void test2() {
48         // 同理換成下個月的今天calendar.add(Calendar.MONTH, 1);
49         calendar.add(Calendar.YEAR, 1);
50 
51         // 獲取年
52         int year = calendar.get(Calendar.YEAR);
53 
54         // 獲取月
55         int month = calendar.get(Calendar.MONTH) + 1;
56 
57         // 獲取日
58         int day = calendar.get(Calendar.DAY_OF_MONTH);
59 
60         System.out.println("一年後的今天:" + year + "年" + month + "月" + day + "日");
61     }
62 
63     // 獲取任意一個月的最後一天
64     @Test
65     public void test3() {
66         // 假設求6月的最後一天
67         int currentMonth = 6;
68         // 先求出7月份的第一天,實際中這裡6為外部傳遞進來的currentMonth變量
69         // 1
70         calendar.set(calendar.get(Calendar.YEAR), currentMonth, 1);
71 
72         calendar.add(Calendar.DATE, -1);
73 
74         // 獲取日
75         int day = calendar.get(Calendar.DAY_OF_MONTH);
76 
77         System.out.println("6月份的最後一天為" + day + "號");
78     }
79 
80     // 設置日期
81     @Test
82     public void test4() {
83         calendar.set(Calendar.YEAR, 2000);
84         System.out.println("現在是" + calendar.get(Calendar.YEAR) + "年");
85 
86         calendar.set(2008, 8, 8);
87         // 獲取年
88         int year = calendar.get(Calendar.YEAR);
89 
90         // 獲取月
91         int month = calendar.get(Calendar.MONTH);
92 
93         // 獲取日
94         int day = calendar.get(Calendar.DAY_OF_MONTH);
95 
96         System.out.println("現在是" + year + "年" + month + "月" + day + "日");
97     }
98 }

程序輸出結果:

1 現在是2016年11月7日11時42分18秒星期2
2 一年後的今天:2017年11月7日
3 6月份的最後一天為30號
4 現在是2000年
5 現在是2008年8月8日

Calendar類中也有before,after,compareTo等方法,用法與Date類的類似,只是現在推薦用Calendar類操作日期。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved