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 cal;
  18. import java.text.DateFormat;
  19. import java.util.*;
  20. public class JspCalendar {
  21.     Calendar  calendar = null;
  22.     Date currentDate;
  23.     public JspCalendar() {
  24. calendar = Calendar.getInstance();
  25. Date trialTime = new Date();
  26. calendar.setTime(trialTime);
  27.     }
  28.     public int getYear() {
  29. return calendar.get(Calendar.YEAR);
  30.     }
  31.     
  32.     public String getMonth() {
  33. int m = getMonthInt();
  34. String[] months = new String [] { "January", "February", "March",
  35. "April", "May", "June",
  36. "July", "August", "September",
  37. "October", "November", "December" };
  38. if (m > 12)
  39.     return "Unknown to Man";
  40. return months[m - 1];
  41.     }
  42.     public String getDay() {
  43. int x = getDayOfWeek();
  44. String[] days = new String[] {"Sunday", "Monday", "Tuesday", "Wednesday", 
  45.       "Thursday", "Friday", "Saturday"};
  46. if (x > 7)
  47.     return "Unknown to Man";
  48. return days[x - 1];
  49.     }
  50.     
  51.     public int getMonthInt() {
  52. return 1 + calendar.get(Calendar.MONTH);
  53.     }
  54.     public String getDate() {
  55. return getMonthInt() + "/" + getDayOfMonth() + "/" +  getYear();
  56.     }
  57.     public String getCurrentDate() {
  58.         Date dt = new Date ();
  59. calendar.setTime (dt);
  60. return getMonthInt() + "/" + getDayOfMonth() + "/" +  getYear();
  61.     }
  62.     public String getNextDate() {
  63.         calendar.set (Calendar.DAY_OF_MONTH, getDayOfMonth() + 1);
  64. return getDate ();
  65.     }
  66.     public String getPrevDate() {
  67.         calendar.set (Calendar.DAY_OF_MONTH, getDayOfMonth() - 1);
  68. return getDate ();
  69.     }
  70.     public String getTime() {
  71. return getHour() + ":" + getMinute() + ":" + getSecond();
  72.     }
  73.     public int getDayOfMonth() {
  74. return calendar.get(Calendar.DAY_OF_MONTH);
  75.     }
  76.     public int getDayOfYear() {
  77. return calendar.get(Calendar.DAY_OF_YEAR);
  78.     }
  79.     public int getWeekOfYear() {
  80. return calendar.get(Calendar.WEEK_OF_YEAR);
  81.     }
  82.     public int getWeekOfMonth() {
  83. return calendar.get(Calendar.WEEK_OF_MONTH);
  84.     }
  85.     public int getDayOfWeek() {
  86. return calendar.get(Calendar.DAY_OF_WEEK);
  87.     }
  88.      
  89.     public int getHour() {
  90. return calendar.get(Calendar.HOUR_OF_DAY);
  91.     }
  92.     
  93.     public int getMinute() {
  94. return calendar.get(Calendar.MINUTE);
  95.     }
  96.     public int getSecond() {
  97. return calendar.get(Calendar.SECOND);
  98.     }
  99.   
  100.     public int getEra() {
  101. return calendar.get(Calendar.ERA);
  102.     }
  103.     public String getUSTimeZone() {
  104. String[] zones = new String[] {"Hawaii", "Alaskan", "Pacific",
  105.        "Mountain", "Central", "Eastern"};
  106. return zones[10 + getZoneOffset()];
  107.     }
  108.     public int getZoneOffset() {
  109. return calendar.get(Calendar.ZONE_OFFSET)/(60*60*1000);
  110.     }
  111.     public int getDSTOffset() {
  112. return calendar.get(Calendar.DST_OFFSET)/(60*60*1000);
  113.     }
  114.     
  115.     public int getAMPM() {
  116. return calendar.get(Calendar.AM_PM);
  117.     }
  118. }