JspCalendar.java
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:4k
源码类别:

Java编程

开发平台:

Java

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements.  See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License.  You may obtain a copy of the License at
  8. *
  9. *     http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package dates;
  18. import java.text.DateFormat;
  19. import java.util.*;
  20. public class JspCalendar {
  21.     Calendar  calendar = null;
  22.     public JspCalendar() {
  23. calendar = Calendar.getInstance();
  24. Date trialTime = new Date();
  25. calendar.setTime(trialTime);
  26.     }
  27.     public int getYear() {
  28. return calendar.get(Calendar.YEAR);
  29.     }
  30.     
  31.     public String getMonth() {
  32. int m = getMonthInt();
  33. String[] months = new String [] { "January", "February", "March",
  34. "April", "May", "June",
  35. "July", "August", "September",
  36. "October", "November", "December" };
  37. if (m > 12)
  38.     return "Unknown to Man";
  39. return months[m - 1];
  40.     }
  41.     public String getDay() {
  42. int x = getDayOfWeek();
  43. String[] days = new String[] {"Sunday", "Monday", "Tuesday", "Wednesday", 
  44.       "Thursday", "Friday", "Saturday"};
  45. if (x > 7)
  46.     return "Unknown to Man";
  47. return days[x - 1];
  48.     }
  49.     
  50.     public int getMonthInt() {
  51. return 1 + calendar.get(Calendar.MONTH);
  52.     }
  53.     public String getDate() {
  54. return getMonthInt() + "/" + getDayOfMonth() + "/" +  getYear();
  55.     }
  56.     public String getTime() {
  57. return getHour() + ":" + getMinute() + ":" + getSecond();
  58.     }
  59.     public int getDayOfMonth() {
  60. return calendar.get(Calendar.DAY_OF_MONTH);
  61.     }
  62.     public int getDayOfYear() {
  63. return calendar.get(Calendar.DAY_OF_YEAR);
  64.     }
  65.     public int getWeekOfYear() {
  66. return calendar.get(Calendar.WEEK_OF_YEAR);
  67.     }
  68.     public int getWeekOfMonth() {
  69. return calendar.get(Calendar.WEEK_OF_MONTH);
  70.     }
  71.     public int getDayOfWeek() {
  72. return calendar.get(Calendar.DAY_OF_WEEK);
  73.     }
  74.      
  75.     public int getHour() {
  76. return calendar.get(Calendar.HOUR_OF_DAY);
  77.     }
  78.     
  79.     public int getMinute() {
  80. return calendar.get(Calendar.MINUTE);
  81.     }
  82.     public int getSecond() {
  83. return calendar.get(Calendar.SECOND);
  84.     }
  85.     public static void main(String args[]) {
  86. JspCalendar db = new JspCalendar();
  87. p("date: " + db.getDayOfMonth());
  88. p("year: " + db.getYear());
  89. p("month: " + db.getMonth());
  90. p("time: " + db.getTime());
  91. p("date: " + db.getDate());
  92. p("Day: " + db.getDay());
  93. p("DayOfYear: " + db.getDayOfYear());
  94. p("WeekOfYear: " + db.getWeekOfYear());
  95. p("era: " + db.getEra());
  96. p("ampm: " + db.getAMPM());
  97. p("DST: " + db.getDSTOffset());
  98. p("ZONE Offset: " + db.getZoneOffset());
  99. p("TIMEZONE: " + db.getUSTimeZone());
  100.     }
  101.     private static void p(String x) {
  102. System.out.println(x);
  103.     }
  104.     public int getEra() {
  105. return calendar.get(Calendar.ERA);
  106.     }
  107.     public String getUSTimeZone() {
  108. String[] zones = new String[] {"Hawaii", "Alaskan", "Pacific",
  109.        "Mountain", "Central", "Eastern"};
  110. return zones[10 + getZoneOffset()];
  111.     }
  112.     public int getZoneOffset() {
  113. return calendar.get(Calendar.ZONE_OFFSET)/(60*60*1000);
  114.     }
  115.     public int getDSTOffset() {
  116. return calendar.get(Calendar.DST_OFFSET)/(60*60*1000);
  117.     }
  118.     
  119.     public int getAMPM() {
  120. return calendar.get(Calendar.AM_PM);
  121.     }
  122. }