1. /*
  2. * @(#)Date.java 1.65 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.util;
  8. import java.util.Calendar;
  9. import java.util.GregorianCalendar;
  10. import java.util.TimeZone;
  11. import java.text.DateFormat;
  12. import java.text.SimpleDateFormat;
  13. import java.io.IOException;
  14. import java.io.ObjectOutputStream;
  15. import java.io.ObjectInputStream;
  16. import java.lang.ref.SoftReference;
  17. /**
  18. * The class <code>Date</code> represents a specific instant
  19. * in time, with millisecond precision.
  20. * <p>
  21. * Prior to JDK 1.1, the class <code>Date</code> had two additional
  22. * functions. It allowed the interpretation of dates as year, month, day, hour,
  23. * minute, and second values. It also allowed the formatting and parsing
  24. * of date strings. Unfortunately, the API for these functions was not
  25. * amenable to internationalization. As of JDK 1.1, the
  26. * <code>Calendar</code> class should be used to convert between dates and time
  27. * fields and the <code>DateFormat</code> class should be used to format and
  28. * parse date strings.
  29. * The corresponding methods in <code>Date</code> are deprecated.
  30. * <p>
  31. * Although the <code>Date</code> class is intended to reflect
  32. * coordinated universal time (UTC), it may not do so exactly,
  33. * depending on the host environment of the Java Virtual Machine.
  34. * Nearly all modern operating systems assume that 1 day =
  35. * 24 × 60 × 60 = 86400 seconds
  36. * in all cases. In UTC, however, about once every year or two there
  37. * is an extra second, called a "leap second." The leap
  38. * second is always added as the last second of the day, and always
  39. * on December 31 or June 30. For example, the last minute of the
  40. * year 1995 was 61 seconds long, thanks to an added leap second.
  41. * Most computer clocks are not accurate enough to be able to reflect
  42. * the leap-second distinction.
  43. * <p>
  44. * Some computer standards are defined in terms of Greenwich mean
  45. * time (GMT), which is equivalent to universal time (UT). GMT is
  46. * the "civil" name for the standard; UT is the
  47. * "scientific" name for the same standard. The
  48. * distinction between UTC and UT is that UTC is based on an atomic
  49. * clock and UT is based on astronomical observations, which for all
  50. * practical purposes is an invisibly fine hair to split. Because the
  51. * earth's rotation is not uniform (it slows down and speeds up
  52. * in complicated ways), UT does not always flow uniformly. Leap
  53. * seconds are introduced as needed into UTC so as to keep UTC within
  54. * 0.9 seconds of UT1, which is a version of UT with certain
  55. * corrections applied. There are other time and date systems as
  56. * well; for example, the time scale used by the satellite-based
  57. * global positioning system (GPS) is synchronized to UTC but is
  58. * <i>not</i> adjusted for leap seconds. An interesting source of
  59. * further information is the U.S. Naval Observatory, particularly
  60. * the Directorate of Time at:
  61. * <blockquote><pre>
  62. * http://tycho.usno.navy.mil
  63. * </pre></blockquote>
  64. * <p>
  65. * and their definitions of "Systems of Time" at:
  66. * <blockquote><pre>
  67. * http://tycho.usno.navy.mil/systime.html
  68. * </pre></blockquote>
  69. * <p>
  70. * In all methods of class <code>Date</code> that accept or return
  71. * year, month, date, hours, minutes, and seconds values, the
  72. * following representations are used:
  73. * <ul>
  74. * <li>A year <i>y</i> is represented by the integer
  75. * <i>y</i> <code>- 1900</code>.
  76. * <li>A month is represented by an integer form 0 to 11; 0 is January,
  77. * 1 is February, and so forth; thus 11 is December.
  78. * <li>A date (day of month) is represented by an integer from 1 to 31
  79. * in the usual manner.
  80. * <li>An hour is represented by an integer from 0 to 23. Thus, the hour
  81. * from midnight to 1 a.m. is hour 0, and the hour from noon to 1
  82. * p.m. is hour 12.
  83. * <li>A minute is represented by an integer from 0 to 59 in the usual manner.
  84. * <li>A second is represented by an integer from 0 to 61; the values 60 and
  85. * 61 occur only for leap seconds and even then only in Java
  86. * implementations that actually track leap seconds correctly. Because
  87. * of the manner in which leap seconds are currently introduced, it is
  88. * extremely unlikely that two leap seconds will occur in the same
  89. * minute, but this specification follows the date and time conventions
  90. * for ISO C.
  91. * </ul>
  92. * <p>
  93. * In all cases, arguments given to methods for these purposes need
  94. * not fall within the indicated ranges; for example, a date may be
  95. * specified as January 32 and is interpreted as meaning February 1.
  96. *
  97. * @author James Gosling
  98. * @author Arthur van Hoff
  99. * @author Alan Liu
  100. * @version 1.65 11/29/01
  101. * @see java.text.DateFormat
  102. * @see java.util.Calendar
  103. * @see java.util.TimeZone
  104. * @since JDK1.0
  105. */
  106. public class Date implements java.io.Serializable, Cloneable, Comparable {
  107. /* DEFAULT ZONE SYNCHRONIZATION: Part of the usage model of Date
  108. * is that a Date object behaves like a Calendar object whose zone
  109. * is the current default TimeZone. As a result, we must be
  110. * careful about keeping this phantom calendar in sync with the
  111. * default TimeZone. There are three class and instance variables
  112. * to watch out for to achieve this. (1)staticCal. Whenever this
  113. * object is used, it must be reset to the default zone. This is a
  114. * cheap operation which can be done directly (just a reference
  115. * assignment), so we just do it every time. (2)simpleFormatter.
  116. * Likewise, the DateFormat object we use to implement toString()
  117. * must be reset to the current default zone before use. Again,
  118. * this is a cheap reference assignment. (3)cal. This is a little
  119. * more tricky. Unlike the other cached static objects, cal has
  120. * state, and we don't want to monkey with it willy-nilly. The
  121. * correct procedure is to change the zone in a way that doesn't
  122. * alter the time of this object. This means getting the millis
  123. * (forcing a fields->time conversion), setting the zone, and then
  124. * restoring the millis. The zone must be set before restoring
  125. * the millis. Since this is an expensive operation, we only do
  126. * this when we have to. - liu 1.2b4 */
  127. /* If cal is null, then fastTime indicates the time in millis.
  128. * Otherwise, fastTime is ignored, and cal indicates the time.
  129. * The cal object is only created if a setXxx call is made to
  130. * set a field. For other operations, staticCal is used instead.
  131. */
  132. private transient Calendar cal;
  133. private transient long fastTime;
  134. private static Calendar staticCal = null;
  135. private static Calendar utcCal = null;
  136. private static int defaultCenturyStart = 0;
  137. /* use serialVersionUID from modified java.util.Date for
  138. * interoperability with JDK1.1. The Date was modified to write
  139. * and read only the UTC time.
  140. */
  141. private static final long serialVersionUID = 7523967970034938905L;
  142. /**
  143. * Caches for the DateFormatters used by various toString methods.
  144. */
  145. private static SoftReference simpleFormatter = null;
  146. private static SoftReference gmtFormatter = null;
  147. /**
  148. * Allocates a <code>Date</code> object and initializes it so that
  149. * it represents the time at which it was allocated, measured to the
  150. * nearest millisecond.
  151. *
  152. * @see java.lang.System#currentTimeMillis()
  153. */
  154. public Date() {
  155. this(System.currentTimeMillis());
  156. }
  157. /**
  158. * Allocates a <code>Date</code> object and initializes it to
  159. * represent the specified number of milliseconds since the
  160. * standard base time known as "the epoch", namely January 1,
  161. * 1970, 00:00:00 GMT.
  162. *
  163. * @param date the milliseconds since January 1, 1970, 00:00:00 GMT.
  164. * @see java.lang.System#currentTimeMillis()
  165. */
  166. public Date(long date) {
  167. cal = null;
  168. fastTime = date;
  169. }
  170. /**
  171. * Allocates a <code>Date</code> object and initializes it so that
  172. * it represents midnight, local time, at the beginning of the day
  173. * specified by the <code>year</code>, <code>month</code>, and
  174. * <code>date</code> arguments.
  175. *
  176. * @param year the year minus 1900.
  177. * @param month the month between 0-11.
  178. * @param date the day of the month between 1-31.
  179. * @see java.util.Calendar
  180. * @deprecated As of JDK version 1.1,
  181. * replaced by <code>Calendar.set(year + 1900, month, date)</code>
  182. * or <code>GregorianCalendar(year + 1900, month, date)</code>.
  183. */
  184. public Date(int year, int month, int date) {
  185. this(year, month, date, 0, 0, 0);
  186. }
  187. /**
  188. * Allocates a <code>Date</code> object and initializes it so that
  189. * it represents the instant at the start of the minute specified by
  190. * the <code>year</code>, <code>month</code>, <code>date</code>,
  191. * <code>hrs</code>, and <code>min</code> arguments, in the local
  192. * time zone.
  193. *
  194. * @param year the year minus 1900.
  195. * @param month the month between 0-11.
  196. * @param date the day of the month between 1-31.
  197. * @param hrs the hours between 0-23.
  198. * @param min the minutes between 0-59.
  199. * @see java.util.Calendar
  200. * @deprecated As of JDK version 1.1,
  201. * replaced by <code>Calendar.set(year + 1900, month, date,
  202. * hrs, min)</code> or <code>GregorianCalendar(year + 1900,
  203. * month, date, hrs, min)</code>.
  204. */
  205. public Date(int year, int month, int date, int hrs, int min) {
  206. this(year, month, date, hrs, min, 0);
  207. }
  208. /**
  209. * Allocates a <code>Date</code> object and initializes it so that
  210. * it represents the instant at the start of the second specified
  211. * by the <code>year</code>, <code>month</code>, <code>date</code>,
  212. * <code>hrs</code>, <code>min</code>, and <code>sec</code> arguments,
  213. * in the local time zone.
  214. *
  215. * @param year the year minus 1900.
  216. * @param month the month between 0-11.
  217. * @param date the day of the month between 1-31.
  218. * @param hrs the hours between 0-23.
  219. * @param min the minutes between 0-59.
  220. * @param sec the seconds between 0-59.
  221. * @see java.util.Calendar
  222. * @deprecated As of JDK version 1.1,
  223. * replaced by <code>Calendar.set(year + 1900, month, date,
  224. * hrs, min, sec)</code> or <code>GregorianCalendar(year + 1900,
  225. * month, date, hrs, min, sec)</code>.
  226. */
  227. public Date(int year, int month, int date, int hrs, int min, int sec) {
  228. cal = null;
  229. if (staticCal == null)
  230. makeStaticCalendars();
  231. synchronized (staticCal) {
  232. staticCal.setTimeZone(TimeZone.getDefault());
  233. staticCal.clear();
  234. staticCal.set(year + 1900, month, date, hrs, min, sec);
  235. fastTime = staticCal.getTimeInMillis();
  236. }
  237. }
  238. /**
  239. * Allocates a <code>Date</code> object and initializes it so that
  240. * it represents the date and time indicated by the string
  241. * <code>s</code>, which is interpreted as if by the
  242. * {@link Date#parse} method.
  243. *
  244. * @param s a string representation of the date.
  245. * @see java.text.DateFormat
  246. * @see java.util.Date#parse(java.lang.String)
  247. * @deprecated As of JDK version 1.1,
  248. * replaced by <code>DateFormat.parse(String s)</code>.
  249. */
  250. public Date(String s) {
  251. this(parse(s));
  252. }
  253. /**
  254. * Return a copy of this object.
  255. */
  256. public Object clone() {
  257. Date d = null;
  258. try {
  259. d = (Date)super.clone();
  260. if (d.cal != null) d.cal = (Calendar)d.cal.clone();
  261. } catch (CloneNotSupportedException e) {} // Won't happen
  262. return d;
  263. }
  264. /**
  265. * Determines the date and time based on the arguments. The
  266. * arguments are interpreted as a year, month, day of the month,
  267. * hour of the day, minute within the hour, and second within the
  268. * minute, exactly as for the <tt>Date</tt> constructor with six
  269. * arguments, except that the arguments are interpreted relative
  270. * to UTC rather than to the local time zone. The time indecated is
  271. * returned represented as the distance, measured in milliseconds,
  272. * of that time from the epoch (00:00:00 GMT on January 1, 1970).
  273. *
  274. * @param year the year minus 1900.
  275. * @param month the month between 0-11.
  276. * @param date the day of the month between 1-31.
  277. * @param hrs the hours between 0-23.
  278. * @param min the minutes between 0-59.
  279. * @param sec the seconds between 0-59.
  280. * @return the number of milliseconds since January 1, 1970, 00:00:00 GMT for
  281. * the date and time specified by the arguments.
  282. * @see java.util.Calendar
  283. * @deprecated As of JDK version 1.1,
  284. * replaced by <code>Calendar.set(year + 1900, month, date,
  285. * hrs, min, sec)</code> or <code>GregorianCalendar(year + 1900,
  286. * month, date, hrs, min, sec)</code>, using a UTC
  287. * <code>TimeZone</code>, followed by <code>Calendar.getTime().getTime()</code>.
  288. */
  289. public static long UTC(int year, int month, int date,
  290. int hrs, int min, int sec) {
  291. if (utcCal == null)
  292. makeStaticCalendars();
  293. synchronized (utcCal) {
  294. utcCal.clear();
  295. utcCal.set(year + 1900, month, date, hrs, min, sec);
  296. return utcCal.getTimeInMillis();
  297. }
  298. }
  299. /**
  300. * Attempts to interpret the string <tt>s</tt> as a representation
  301. * of a date and time. If the attempt is successful, the time
  302. * indicated is returned represented as the distance, measured in
  303. * milliseconds, of that time from the epoch (00:00:00 GMT on
  304. * January 1, 1970). If the attempt fails, an
  305. * <tt>IllegalArgumentException</tt> is thrown.
  306. * <p>
  307. * It accepts many syntaxes; in particular, it recognizes the IETF
  308. * standard date syntax: "Sat, 12 Aug 1995 13:30:00 GMT". It also
  309. * understands the continental U.S. time-zone abbreviations, but for
  310. * general use, a time-zone offset should be used: "Sat, 12 Aug 1995
  311. * 13:30:00 GMT+0430" (4 hours, 30 minutes west of the Greenwich
  312. * meridian). If no time zone is specified, the local time zone is
  313. * assumed. GMT and UTC are considered equivalent.
  314. * <p>
  315. * The string <tt>s</tt> is processed from left to right, looking for
  316. * data of interest. Any material in <tt>s</tt> that is within the
  317. * ASCII parenthesis characters <tt>(</tt> and <tt>)</tt> is ignored.
  318. * Parentheses may be nested. Otherwise, the only characters permitted
  319. * within <tt>s</tt> are these ASCII characters:
  320. * <blockquote><pre>
  321. * abcdefghijklmnopqrstuvwxyz
  322. * ABCDEFGHIJKLMNOPQRSTUVWXYZ
  323. * 0123456789,+-:/</pre></blockquote>
  324. * and whitespace characters.<p>
  325. * A consecutive sequence of decimal digits is treated as a decimal
  326. * number:<ul>
  327. * <li>If a number is preceded by <tt>+</tt> or <tt>-</tt> and a year
  328. * has already been recognized, then the number is a time-zone
  329. * offset. If the number is less than 24, it is an offset measured
  330. * in hours. Otherwise, it is regarded as an offset in minutes,
  331. * expressed in 24-hour time format without punctuation. A
  332. * preceding <tt>-</tt> means a westward offset. Time zone offsets
  333. * are always relative to UTC (Greenwich). Thus, for example,
  334. * <tt>-5</tt> occurring in the string would mean "five hours west
  335. * of Greenwich" and <tt>+0430</tt> would mean "four hours and
  336. * thirty minutes east of Greenwich." It is permitted for the
  337. * string to specify <tt>GMT</tt>, <tt>UT</tt>, or <tt>UTC</tt>
  338. * redundantly-for example, <tt>GMT-5</tt> or <tt>utc+0430</tt>.
  339. * <li>The number is regarded as a year number if one of the
  340. * following conditions is true:
  341. * <ul>
  342. * <li>The number is equal to or greater than 70 and followed by a
  343. * space, comma, slash, or end of string
  344. * <li>The number is less than 70, and both a month and a day of
  345. * the month have already been recognized</li>
  346. * </ul>
  347. * If the recognized year number is less than 100, it is
  348. * interpreted as an abbreviated year relative to a century of
  349. * which dates are within 80 years before and 19 years after
  350. * the time when the Date class is initialized.
  351. * After adjusting the year number, 1900 is subtracted from
  352. * it. For example, if the current year is 1999 then years in
  353. * the range 19 to 99 are assumed to mean 1919 to 1999, while
  354. * years from 0 to 18 are assumed to mean 2000 to 2018. Note
  355. * that this is slightly different from the interpretation of
  356. * years less than 100 that is used in {@link java.text.SimpleDateFomat}.
  357. * <li>If the number is followed by a colon, it is regarded as an hour,
  358. * unless an hour has already been recognized, in which case it is
  359. * regarded as a minute.
  360. * <li>If the number is followed by a slash, it is regarded as a month
  361. * (it is decreased by 1 to produce a number in the range <tt>0</tt>
  362. * to <tt>11</tt>), unless a month has already been recognized, in
  363. * which case it is regarded as a day of the month.
  364. * <li>If the number is followed by whitespace, a comma, a hyphen, or
  365. * end of string, then if an hour has been recognized but not a
  366. * minute, it is regarded as a minute; otherwise, if a minute has
  367. * been recognized but not a second, it is regarded as a second;
  368. * otherwise, it is regarded as a day of the month. </ul><p>
  369. * A consecutive sequence of letters is regarded as a word and treated
  370. * as follows:<ul>
  371. * <li>A word that matches <tt>AM</tt>, ignoring case, is ignored (but
  372. * the parse fails if an hour has not been recognized or is less
  373. * than <tt>1</tt> or greater than <tt>12</tt>).
  374. * <li>A word that matches <tt>PM</tt>, ignoring case, adds <tt>12</tt>
  375. * to the hour (but the parse fails if an hour has not been
  376. * recognized or is less than <tt>1</tt> or greater than <tt>12</tt>).
  377. * <li>Any word that matches any prefix of <tt>SUNDAY, MONDAY, TUESDAY,
  378. * WEDNESDAY, THURSDAY, FRIDAY</tt>, or <tt>SATURDAY</tt>, ignoring
  379. * case, is ignored. For example, <tt>sat, Friday, TUE</tt>, and
  380. * <tt>Thurs</tt> are ignored.
  381. * <li>Otherwise, any word that matches any prefix of <tt>JANUARY,
  382. * FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER,
  383. * OCTOBER, NOVEMBER</tt>, or <tt>DECEMBER</tt>, ignoring case, and
  384. * considering them in the order given here, is recognized as
  385. * specifying a month and is converted to a number (<tt>0</tt> to
  386. * <tt>11</tt>). For example, <tt>aug, Sept, april</tt>, and
  387. * <tt>NOV</tt> are recognized as months. So is <tt>Ma</tt>, which
  388. * is recognized as <tt>MARCH</tt>, not <tt>MAY</tt>.
  389. * <li>Any word that matches <tt>GMT, UT</tt>, or <tt>UTC</tt>, ignoring
  390. * case, is treated as referring to UTC.
  391. * <li>Any word that matches <tt>EST, CST, MST</tt>, or <tt>PST</tt>,
  392. * ignoring case, is recognized as referring to the time zone in
  393. * North America that is five, six, seven, or eight hours west of
  394. * Greenwich, respectively. Any word that matches <tt>EDT, CDT,
  395. * MDT</tt>, or <tt>PDT</tt>, ignoring case, is recognized as
  396. * referring to the same time zone, respectively, during daylight
  397. * saving time.</ul><p>
  398. * Once the entire string s has been scanned, it is converted to a time
  399. * result in one of two ways. If a time zone or time-zone offset has been
  400. * recognized, then the year, month, day of month, hour, minute, and
  401. * second are interpreted in UTC and then the time-zone offset is
  402. * applied. Otherwise, the year, month, day of month, hour, minute, and
  403. * second are interpreted in the local time zone.
  404. *
  405. * @param s a string to be parsed as a date.
  406. * @return the number of milliseconds since January 1, 1970, 00:00:00 GMT
  407. * represented by the string argument.
  408. * @see java.text.DateFormat
  409. * @deprecated As of JDK version 1.1,
  410. * replaced by <code>DateFormat.parse(String s)</code>.
  411. */
  412. public static long parse(String s) {
  413. if (staticCal == null)
  414. makeStaticCalendars(); // Called only for side-effect of setting defaultCenturyStart
  415. int year = Integer.MIN_VALUE;
  416. int mon = -1;
  417. int mday = -1;
  418. int hour = -1;
  419. int min = -1;
  420. int sec = -1;
  421. int millis = -1;
  422. int c = -1;
  423. int i = 0;
  424. int n = -1;
  425. int wst = -1;
  426. int tzoffset = -1;
  427. int prevc = 0;
  428. syntax:
  429. {
  430. if (s == null)
  431. break syntax;
  432. int limit = s.length();
  433. while (i < limit) {
  434. c = s.charAt(i);
  435. i++;
  436. if (c <= ' ' || c == ',')
  437. continue;
  438. if (c == '(') { // skip comments
  439. int depth = 1;
  440. while (i < limit) {
  441. c = s.charAt(i);
  442. i++;
  443. if (c == '(') depth++;
  444. else if (c == ')')
  445. if (--depth <= 0)
  446. break;
  447. }
  448. continue;
  449. }
  450. if ('0' <= c && c <= '9') {
  451. n = c - '0';
  452. while (i < limit && '0' <= (c = s.charAt(i)) && c <= '9') {
  453. n = n * 10 + c - '0';
  454. i++;
  455. }
  456. if (prevc == '+' || prevc == '-' && year != Integer.MIN_VALUE) {
  457. // timezone offset
  458. if (n < 24)
  459. n = n * 60; // EG. "GMT-3"
  460. else
  461. n = n % 100 + n / 100 * 60; // eg "GMT-0430"
  462. if (prevc == '+') // plus means east of GMT
  463. n = -n;
  464. if (tzoffset != 0 && tzoffset != -1)
  465. break syntax;
  466. tzoffset = n;
  467. } else if (n >= 70)
  468. if (year != Integer.MIN_VALUE)
  469. break syntax;
  470. else if (c <= ' ' || c == ',' || c == '/' || i >= limit)
  471. // year = n < 1900 ? n : n - 1900;
  472. year = n;
  473. else
  474. break syntax;
  475. else if (c == ':')
  476. if (hour < 0)
  477. hour = (byte) n;
  478. else if (min < 0)
  479. min = (byte) n;
  480. else
  481. break syntax;
  482. else if (c == '/')
  483. if (mon < 0)
  484. mon = (byte) (n - 1);
  485. else if (mday < 0)
  486. mday = (byte) n;
  487. else
  488. break syntax;
  489. else if (i < limit && c != ',' && c > ' ' && c != '-')
  490. break syntax;
  491. else if (hour >= 0 && min < 0)
  492. min = (byte) n;
  493. else if (min >= 0 && sec < 0)
  494. sec = (byte) n;
  495. else if (mday < 0)
  496. mday = (byte) n;
  497. // Handle two-digit years < 70 (70-99 handled above).
  498. else if (year == Integer.MIN_VALUE && mon >= 0 && mday >= 0)
  499. year = n;
  500. else
  501. break syntax;
  502. prevc = 0;
  503. } else if (c == '/' || c == ':' || c == '+' || c == '-')
  504. prevc = c;
  505. else {
  506. int st = i - 1;
  507. while (i < limit) {
  508. c = s.charAt(i);
  509. if (!('A' <= c && c <= 'Z' || 'a' <= c && c <= 'z'))
  510. break;
  511. i++;
  512. }
  513. if (i <= st + 1)
  514. break syntax;
  515. int k;
  516. for (k = wtb.length; --k >= 0;)
  517. if (wtb[k].regionMatches(true, 0, s, st, i - st)) {
  518. int action = ttb[k];
  519. if (action != 0) {
  520. if (action == 1) { // pm
  521. if (hour > 12 || hour < 1)
  522. break syntax;
  523. else if (hour < 12)
  524. hour += 12;
  525. } else if (action == 14) { // am
  526. if (hour > 12 || hour < 1)
  527. break syntax;
  528. else if (hour == 12)
  529. hour = 0;
  530. } else if (action <= 13) { // month!
  531. if (mon < 0)
  532. mon = (byte) (action - 2);
  533. else
  534. break syntax;
  535. } else {
  536. tzoffset = action - 10000;
  537. }
  538. }
  539. break;
  540. }
  541. if (k < 0)
  542. break syntax;
  543. prevc = 0;
  544. }
  545. }
  546. if (year == Integer.MIN_VALUE || mon < 0 || mday < 0)
  547. break syntax;
  548. // Parse 2-digit years within the correct default century.
  549. if (year < 100) {
  550. year += (defaultCenturyStart / 100) * 100;
  551. if (year < defaultCenturyStart) year += 100;
  552. }
  553. year -= 1900;
  554. if (sec < 0)
  555. sec = 0;
  556. if (min < 0)
  557. min = 0;
  558. if (hour < 0)
  559. hour = 0;
  560. if (tzoffset == -1) // no time zone specified, have to use local
  561. return new Date (year, mon, mday, hour, min, sec).getTime();
  562. return UTC(year, mon, mday, hour, min, sec) + tzoffset * (60 * 1000);
  563. }
  564. // syntax error
  565. throw new IllegalArgumentException();
  566. }
  567. private final static String wtb[] = {
  568. "am", "pm",
  569. "monday", "tuesday", "wednesday", "thursday", "friday",
  570. "saturday", "sunday",
  571. "january", "february", "march", "april", "may", "june",
  572. "july", "august", "september", "october", "november", "december",
  573. "gmt", "ut", "utc", "est", "edt", "cst", "cdt",
  574. "mst", "mdt", "pst", "pdt"
  575. // this time zone table needs to be expanded
  576. };
  577. private final static int ttb[] = {
  578. 14, 1, 0, 0, 0, 0, 0, 0, 0,
  579. 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
  580. 10000 + 0, 10000 + 0, 10000 + 0, // GMT/UT/UTC
  581. 10000 + 5 * 60, 10000 + 4 * 60, // EST/EDT
  582. 10000 + 6 * 60, 10000 + 5 * 60,
  583. 10000 + 7 * 60, 10000 + 6 * 60,
  584. 10000 + 8 * 60, 10000 + 7 * 60
  585. };
  586. /**
  587. * Returns a value that is the result of subtracting 1900 from the
  588. * year that contains or begins with the instant in time represented
  589. * by this <code>Date</code> object, as interpreted in the local
  590. * time zone.
  591. *
  592. * @return the year represented by this date, minus 1900.
  593. * @see java.util.Calendar
  594. * @deprecated As of JDK version 1.1,
  595. * replaced by <code>Calendar.get(Calendar.YEAR) - 1900</code>.
  596. */
  597. public int getYear() {
  598. return getField(Calendar.YEAR) - 1900;
  599. }
  600. /**
  601. * Sets the year of this <tt>Date</tt> object to be the specified
  602. * value plus 1900. This <code>Date</code> object is modified so
  603. * that it represents a point in time within the specified year,
  604. * with the month, date, hour, minute, and second the same as
  605. * before, as interpreted in the local time zone. (Of course, if
  606. * the date was February 29, for example, and the year is set to a
  607. * non-leap year, then the new date will be treated as if it were
  608. * on March 1.)
  609. *
  610. * @param year the year value.
  611. * @see java.util.Calendar
  612. * @deprecated As of JDK version 1.1,
  613. * replaced by <code>Calendar.set(Calendar.YEAR, year + 1900)</code>.
  614. */
  615. public void setYear(int year) {
  616. setField(Calendar.YEAR, year + 1900);
  617. }
  618. /**
  619. * Returns a number representing the month that contains or begins
  620. * with the instant in time represented by this <tt>Date</tt> object.
  621. * The value returned is between <code>0</code> and <code>11</code>,
  622. * with the value <code>0</code> representing January.
  623. *
  624. * @return the month represented by this date.
  625. * @see java.util.Calendar
  626. * @deprecated As of JDK version 1.1,
  627. * replaced by <code>Calendar.get(Calendar.MONTH)</code>.
  628. */
  629. public int getMonth() {
  630. return getField(Calendar.MONTH);
  631. }
  632. /**
  633. * Sets the month of this date to the specified value. This
  634. * <tt>Date</tt> object is modified so that it represents a point
  635. * in time within the specified month, with the year, date, hour,
  636. * minute, and second the same as before, as interpreted in the
  637. * local time zone. If the date was October 31, for example, and
  638. * the month is set to June, then the new date will be treated as
  639. * if it were on July 1, because June has only 30 days.
  640. *
  641. * @param month the month value between 0-11.
  642. * @see java.util.Calendar
  643. * @deprecated As of JDK version 1.1,
  644. * replaced by <code>Calendar.set(Calendar.MONTH, int month)</code>.
  645. */
  646. public void setMonth(int month) {
  647. setField(Calendar.MONTH, month);
  648. }
  649. /**
  650. * Returns the day of the month represented by this <tt>Date</tt> object.
  651. * The value returned is between <code>1</code> and <code>31</code>
  652. * representing the day of the month that contains or begins with the
  653. * instant in time represented by this <tt>Date</tt> object, as
  654. * interpreted in the local time zone.
  655. *
  656. * @return the day of the month represented by this date.
  657. * @see java.util.Calendar
  658. * @deprecated As of JDK version 1.1,
  659. * replaced by <code>Calendar.get(Calendar.DAY_OF_MONTH)</code>.
  660. * @deprecated
  661. */
  662. public int getDate() {
  663. return getField(Calendar.DATE);
  664. }
  665. /**
  666. * Sets the day of the month of this <tt>Date</tt> object to the
  667. * specified value. This <tt>Date</tt> object is modified so that
  668. * it represents a point in time within the specified day of the
  669. * month, with the year, month, hour, minute, and second the same
  670. * as before, as interpreted in the local time zone. If the date
  671. * was April 30, for example, and the date is set to 31, then it
  672. * will be treated as if it were on May 1, because April has only
  673. * 30 days.
  674. *
  675. * @param date the day of the month value between 1-31.
  676. * @see java.util.Calendar
  677. * @deprecated As of JDK version 1.1,
  678. * replaced by <code>Calendar.set(Calendar.DAY_OF_MONTH, int date)</code>.
  679. */
  680. public void setDate(int date) {
  681. setField(Calendar.DATE, date);
  682. }
  683. /**
  684. * Returns the day of the week represented by this date. The
  685. * returned value (<tt>0</tt> = Sunday, <tt>1</tt> = Monday,
  686. * <tt>2</tt> = Tuesday, <tt>3</tt> = Wednesday, <tt>4</tt> =
  687. * Thursday, <tt>5</tt> = Friday, <tt>6</tt> = Saturday)
  688. * represents the day of the week that contains or begins with
  689. * the instant in time represented by this <tt>Date</tt> object,
  690. * as interpreted in the local time zone.
  691. *
  692. * @return the day of the week represented by this date.
  693. * @see java.util.Calendar
  694. * @deprecated As of JDK version 1.1,
  695. * replaced by <code>Calendar.get(Calendar.DAY_OF_WEEK)</code>.
  696. */
  697. public int getDay() {
  698. return getField(Calendar.DAY_OF_WEEK) - Calendar.SUNDAY;
  699. }
  700. /**
  701. * Returns the hour represented by this <tt>Date</tt> object. The
  702. * returned value is a number (<tt>0</tt> through <tt>23</tt>)
  703. * representing the hour within the day that contains or begins
  704. * with the instant in time represented by this <tt>Date</tt>
  705. * object, as interpreted in the local time zone.
  706. *
  707. * @return the hour represented by this date.
  708. * @see java.util.Calendar
  709. * @deprecated As of JDK version 1.1,
  710. * replaced by <code>Calendar.get(Calendar.HOUR_OF_DAY)</code>.
  711. */
  712. public int getHours() {
  713. return getField(Calendar.HOUR_OF_DAY);
  714. }
  715. /**
  716. * Sets the hour of this <tt>Date</tt> object to the specified value.
  717. * This <tt>Date</tt> object is modified so that it represents a point
  718. * in time within the specified hour of the day, with the year, month,
  719. * date, minute, and second the same as before, as interpreted in the
  720. * local time zone.
  721. *
  722. * @param hours the hour value.
  723. * @see java.util.Calendar
  724. * @deprecated As of JDK version 1.1,
  725. * replaced by <code>Calendar.set(Calendar.HOUR_OF_DAY, int hours)</code>.
  726. */
  727. public void setHours(int hours) {
  728. setField(Calendar.HOUR_OF_DAY, hours);
  729. }
  730. /**
  731. * Returns the number of minutes past the hour represented by this date,
  732. * as interpreted in the local time zone.
  733. * The value returned is between <code>0</code> and <code>59</code>.
  734. *
  735. * @return the number of minutes past the hour represented by this date.
  736. * @see java.util.Calendar
  737. * @deprecated As of JDK version 1.1,
  738. * replaced by <code>Calendar.get(Calendar.MINUTE)</code>.
  739. */
  740. public int getMinutes() {
  741. return getField(Calendar.MINUTE);
  742. }
  743. /**
  744. * Sets the minutes of this <tt>Date</tt> object to the specified value.
  745. * This <tt>Date</tt> object is modified so that it represents a point
  746. * in time within the specified minute of the hour, with the year, month,
  747. * date, hour, and second the same as before, as interpreted in the
  748. * local time zone.
  749. *
  750. * @param minutes the value of the minutes.
  751. * @see java.util.Calendar
  752. * @deprecated As of JDK version 1.1,
  753. * replaced by <code>Calendar.set(Calendar.MINUTE, int minutes)</code>.
  754. */
  755. public void setMinutes(int minutes) {
  756. setField(Calendar.MINUTE, minutes);
  757. }
  758. /**
  759. * Returns the number of seconds past the minute represented by this date.
  760. * The value returned is between <code>0</code> and <code>61</code>. The
  761. * values <code>60</code> and <code>61</code> can only occur on those
  762. * Java Virtual Machines that take leap seconds into account.
  763. *
  764. * @return the number of seconds past the minute represented by this date.
  765. * @see java.util.Calendar
  766. * @deprecated As of JDK version 1.1,
  767. * replaced by <code>Calendar.get(Calendar.SECOND)</code>.
  768. */
  769. public int getSeconds() {
  770. return getField(Calendar.SECOND);
  771. }
  772. /**
  773. * Sets the seconds of this <tt>Date</tt> to the specified value.
  774. * This <tt>Date</tt> object is modified so that it represents a
  775. * point in time within the specified second of the minute, with
  776. * the year, month, date, hour, and minute the same as before, as
  777. * interpreted in the local time zone.
  778. *
  779. * @param seconds the seconds value.
  780. * @see java.util.Calendar
  781. * @deprecated As of JDK version 1.1,
  782. * replaced by <code>Calendar.set(Calendar.SECOND, int seconds)</code>.
  783. */
  784. public void setSeconds(int seconds) {
  785. setField(Calendar.SECOND, seconds);
  786. }
  787. /**
  788. * Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT
  789. * represented by this <tt>Date</tt> object.
  790. *
  791. * @return the number of milliseconds since January 1, 1970, 00:00:00 GMT
  792. * represented by this date.
  793. */
  794. public long getTime() {
  795. return (cal == null) ? fastTime : cal.getTimeInMillis();
  796. }
  797. /**
  798. * Sets this <tt>Date</tt> object to represent a point in time that is
  799. * <tt>time</tt> milliseconds after January 1, 1970 00:00:00 GMT.
  800. *
  801. * @param time the number of milliseconds.
  802. */
  803. public void setTime(long time) {
  804. if (cal == null) {
  805. fastTime = time;
  806. }
  807. else {
  808. cal.setTimeInMillis(time);
  809. }
  810. }
  811. /**
  812. * Tests if this date is before the specified date.
  813. *
  814. * @param when a date.
  815. * @return <code>true</code> if and only if the instant of time
  816. * represented by this <tt>Date</tt> object is strictly
  817. * earlier than the instant represented by <tt>when</tt>
  818. * <code>false</code> otherwise.
  819. */
  820. public boolean before(Date when) {
  821. return getTime() < when.getTime();
  822. }
  823. /**
  824. * Tests if this date is after the specified date.
  825. *
  826. * @param when a date.
  827. * @return <code>true</code> if and only if the instant represented
  828. * by this <tt>Date</tt> object is strictly later than the
  829. * instant represented by <tt>when</tt>
  830. * <code>false</code> otherwise.
  831. */
  832. public boolean after(Date when) {
  833. return getTime() > when.getTime();
  834. }
  835. /**
  836. * Compares two dates for equality.
  837. * The result is <code>true</code> if and only if the argument is
  838. * not <code>null</code> and is a <code>Date</code> object that
  839. * represents the same point in time, to the millisecond, as this object.
  840. * <p>
  841. * Thus, two <code>Date</code> objects are equal if and only if the
  842. * <code>getTime</code> method returns the same <code>long</code>
  843. * value for both.
  844. *
  845. * @param obj the object to compare with.
  846. * @return <code>true</code> if the objects are the same;
  847. * <code>false</code> otherwise.
  848. * @see java.util.Date#getTime()
  849. */
  850. public boolean equals(Object obj) {
  851. return obj != null && obj instanceof Date && getTime() == ((Date) obj).getTime();
  852. }
  853. /**
  854. * Compares two Dates for ordering.
  855. *
  856. * @param anotherDate the <code>Date</code> to be compared.
  857. * @return the value <code>0</code> if the argument Date is equal to
  858. * this Date; a value less than <code>0</code> if this Date
  859. * is before the Date argument; and a value greater than
  860. * <code>0</code> if this Date is after the Date argument.
  861. * @since JDK1.2
  862. */
  863. public int compareTo(Date anotherDate) {
  864. long thisTime = this.getTime();
  865. long anotherTime = anotherDate.getTime();
  866. return (thisTime<anotherTime ? -1 : (thisTime==anotherTime ? 0 : 1));
  867. }
  868. /**
  869. * Compares this Date to another Object. If the Object is a Date,
  870. * this function behaves like <code>compareTo(Date)</code>. Otherwise,
  871. * it throws a <code>ClassCastException</code> (as Dates are comparable
  872. * only to other Dates).
  873. *
  874. * @param o the <code>Object</code> to be compared.
  875. * @return the value <code>0</code> if the argument is a Date
  876. * equal to this Date; a value less than <code>0</code> if the
  877. * argument is a Date after this Date; and a value greater than
  878. * <code>0</code> if the argument is a Date before this Date.
  879. * @exception ClassCastException if the argument is not a
  880. * <code>Date</code>.
  881. * @see java.lang.Comparable
  882. * @since JDK1.2
  883. */
  884. public int compareTo(Object o) {
  885. return compareTo((Date)o);
  886. }
  887. /**
  888. * Returns a hash code value for this object. The result is the
  889. * exclusive OR of the two halves of the primitive <tt>long</tt>
  890. * value returned by the {@link Date#getTime}
  891. * method. That is, the hash code is the value of the expression:
  892. * <blockquote><pre>
  893. * (int)(this.getTime()^(this.getTime() >>> 32))</pre></blockquote>
  894. *
  895. * @return a hash code value for this object.
  896. */
  897. public int hashCode() {
  898. long ht = getTime();
  899. return (int) ht ^ (int) (ht >> 32);
  900. }
  901. /**
  902. * Converts this <code>Date</code> object to a <code>String</code>
  903. * of the form:
  904. * <blockquote><pre>
  905. * dow mon dd hh:mm:ss zzz yyyy</pre></blockquote>
  906. * where:<ul>
  907. * <li><tt>dow</tt> is the day of the week (<tt>Sun, Mon, Tue, Wed,
  908. * Thu, Fri, Sat</tt>).
  909. * <li><tt>mon</tt> is the month (<tt>Jan, Feb, Mar, Apr, May, Jun,
  910. * Jul, Aug, Sep, Oct, Nov, Dec</tt>).
  911. * <li><tt>dd</tt> is the day of the month (<tt>01</tt> through
  912. * <tt>31</tt>), as two decimal digits.
  913. * <li><tt>hh</tt> is the hour of the day (<tt>00</tt> through
  914. * <tt>23</tt>), as two decimal digits.
  915. * <li><tt>mm</tt> is the minute within the hour (<tt>00</tt> through
  916. * <tt>59</tt>), as two decimal digits.
  917. * <li><tt>ss</tt> is the second within the minute (<tt>00</tt> through
  918. * <tt>61</tt>, as two decimal digits.
  919. * <li><tt>zzz</tt> is the time zone (and may reflect daylight savings
  920. * time). Standard time zone abbreviations include those
  921. * recognized by the method <tt>parse</tt>. If time zone
  922. * informationi is not available, then <tt>zzz</tt> is empty -
  923. * that is, it consists of no characters at all.
  924. * <li><tt>yyyy</tt> is the year, as four decimal digits.
  925. * </ul>
  926. *
  927. * @return a string representation of this date.
  928. * @see java.util.Date#toLocaleString()
  929. * @see java.util.Date#toGMTString()
  930. */
  931. public String toString() {
  932. DateFormat formatter = null;
  933. if (simpleFormatter != null) {
  934. formatter = (DateFormat)simpleFormatter.get();
  935. }
  936. if (formatter == null) {
  937. /* No cache yet, or cached formatter GC'd */
  938. formatter = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy",
  939. Locale.US);
  940. simpleFormatter = new SoftReference(formatter);
  941. }
  942. synchronized (formatter) {
  943. formatter.setTimeZone(TimeZone.getDefault());
  944. return formatter.format(this);
  945. }
  946. }
  947. /**
  948. * Creates a string representation of this <ttt>Date</tt> object in an
  949. * implementation-dependent form. The intent is that the form should
  950. * be familiar to the user of the Java application, wherever it may
  951. * happen to be running. The intent is comparable to that of the
  952. * "<code>%c</code>" format supported by the <code>strftime()</code>
  953. * function of ISO C.
  954. *
  955. * @return a string representation of this date, using the locale
  956. * conventions.
  957. * @see java.text.DateFormat
  958. * @see java.util.Date#toString()
  959. * @see java.util.Date#toGMTString()
  960. * @deprecated As of JDK version 1.1,
  961. * replaced by <code>DateFormat.format(Date date)</code>.
  962. */
  963. public String toLocaleString() {
  964. DateFormat formatter = DateFormat.getDateTimeInstance();
  965. return formatter.format(this);
  966. }
  967. /**
  968. * Creates a string representation of this <tt>Date</tt> object of
  969. * the form:
  970. * <blockquote<pre>
  971. * d mon yyyy hh:mm:ss GMT</pre></blockquote>
  972. * where:<ul>
  973. * <li><i>d</i> is the day of the month (<tt>1</tt> through <tt>31</tt>),
  974. * as one or two decimal digits.
  975. * <li><i>mon</i> is the month (<tt>Jan, Feb, Mar, Apr, May, Jun, Jul,
  976. * Aug, Sep, Oct, Nov, Dec</tt>).
  977. * <li><i>yyyy</i> i sthe year, as four decimal digits.
  978. * <li><i>hh</i> is the hour of the day (<tt>00</tt> through <tt>23</tt>),
  979. * as two decimal digits.
  980. * <li><i>mm</i> is the minute within the hour (<tt>00</tt> through
  981. * <tt>59</tt>), as two decimal digits.
  982. * <li><i>ss</i> is the second within the minute (<tt>00</tt> through
  983. * <tt>61</tt>), as two decimal digits.
  984. * <li><i>GMT</i> is exactly the ASCII letters "<tt>GMT</tt>" to indicate
  985. * Greenwich Mean Time.
  986. * </ul><p>
  987. * The result does not depend on the local time zone.
  988. *
  989. * @return a string representation of this date, using the Internet GMT
  990. * conventions.
  991. * @see java.text.DateFormat
  992. * @see java.util.Date#toString()
  993. * @see java.util.Date#toLocaleString()
  994. * @deprecated As of JDK version 1.1,
  995. * replaced by <code>DateFormat.format(Date date)</code>, using a
  996. * GMT <code>TimeZone</code>.
  997. */
  998. public String toGMTString() {
  999. DateFormat formatter = null;
  1000. if (gmtFormatter != null) {
  1001. formatter = (DateFormat)gmtFormatter.get();
  1002. }
  1003. if (formatter == null) {
  1004. /* No cache yet, or cached formatter GC'd */
  1005. formatter = new SimpleDateFormat("d MMM yyyy HH:mm:ss 'GMT'",
  1006. Locale.US);
  1007. formatter.setTimeZone(TimeZone.getTimeZone("GMT"));
  1008. gmtFormatter = new SoftReference(formatter);
  1009. }
  1010. return formatter.format(this);
  1011. }
  1012. /**
  1013. * Returns the offset, measured in minutes, for the local time zone
  1014. * relative to UTC that is appropriate for the time represented by
  1015. * this <tt>Date</tt> object.
  1016. * <p>
  1017. * For example, in Massachusetts, five time zones west of Greenwich:
  1018. * <blockquote><pre>
  1019. * new Date(96, 1, 14).getTimezoneOffset() returns 300</pre></blockquote>
  1020. * because on February 14, 1996, standard time (Eastern Standard Time)
  1021. * is in use, which is offset five hours from UTC; but:
  1022. * <blockquote><pre>
  1023. * new Date(96, 5, 1).getTimezoneOffset() returns 240</pre></blockquote>
  1024. * because on May 1, 1996, daylight savings time (Eastern Daylight Time)
  1025. * is in use, which is offset only four hours from UTC.<p>
  1026. * This method produces teh same result as if it computed:
  1027. * <blockquote><pre>
  1028. * (this.getTime() - UTC(this.getYear(),
  1029. * this.getMonth(),
  1030. * this.getDate(),
  1031. * this.getHours(),
  1032. * this.getMinutes(),
  1033. * this.getSeconds())) / (60 * 1000)
  1034. * </pre></blockquote>
  1035. *
  1036. * @return the time-zone offset, in minutes, for the current locale.
  1037. * @see java.util.Calendar
  1038. * @see java.util.TimeZone
  1039. * @deprecated As of JDK version 1.1,
  1040. * replaced by <code>Calendar.get(Calendar.ZONE_OFFSET) +
  1041. * Calendar.get(Calendar.DST_OFFSET)</code>.
  1042. */
  1043. public int getTimezoneOffset() {
  1044. int offset;
  1045. if (cal == null) {
  1046. if (staticCal == null)
  1047. makeStaticCalendars();
  1048. synchronized (staticCal) {
  1049. staticCal.setTimeZone(TimeZone.getDefault());
  1050. staticCal.setTimeInMillis(getTime());
  1051. offset = staticCal.get(Calendar.ZONE_OFFSET) +
  1052. staticCal.get(Calendar.DST_OFFSET);
  1053. }
  1054. }
  1055. else {
  1056. TimeZone defaultZone = TimeZone.getDefault();
  1057. if (!defaultZone.equals(cal.getTimeZone())) {
  1058. long ms = cal.getTimeInMillis();
  1059. cal.setTimeZone(TimeZone.getDefault());
  1060. cal.setTimeInMillis(ms);
  1061. }
  1062. offset = cal.get(Calendar.ZONE_OFFSET) +
  1063. cal.get(Calendar.DST_OFFSET);
  1064. }
  1065. return -(offset / 1000 / 60); // convert to minutes
  1066. }
  1067. /**
  1068. * Save the state of this object to a stream (i.e., serialize it).
  1069. *
  1070. * @serialData The value returned by <code>getTime()</code>
  1071. * is emitted (long). This represents the offset from
  1072. * January 1, 1970, 00:00:00 GMT in milliseconds.
  1073. */
  1074. private void writeObject(ObjectOutputStream s)
  1075. throws IOException
  1076. {
  1077. s.writeLong(getTime());
  1078. }
  1079. /**
  1080. * Reconstitute this object from a stream (i.e., deserialize it).
  1081. */
  1082. private void readObject(ObjectInputStream s)
  1083. throws IOException, ClassNotFoundException
  1084. {
  1085. fastTime = s.readLong();
  1086. // we expect to have cal == null here
  1087. }
  1088. /**
  1089. * Return a field for this date by looking it up in a Calendar object.
  1090. *
  1091. * @return the field value
  1092. * @see java.util.Calendar
  1093. * @param field the field to return
  1094. */
  1095. private final int getField(int field) {
  1096. if (cal == null) {
  1097. if (staticCal == null)
  1098. makeStaticCalendars();
  1099. synchronized (staticCal) {
  1100. staticCal.setTimeZone(TimeZone.getDefault());
  1101. staticCal.setTimeInMillis(fastTime);
  1102. return staticCal.get(field);
  1103. }
  1104. }
  1105. else {
  1106. TimeZone defaultZone = TimeZone.getDefault();
  1107. if (!defaultZone.equals(cal.getTimeZone())) {
  1108. long ms = cal.getTimeInMillis();
  1109. cal.setTimeZone(TimeZone.getDefault());
  1110. cal.setTimeInMillis(ms);
  1111. }
  1112. return cal.get(field);
  1113. }
  1114. }
  1115. /**
  1116. * Set a field for this day.
  1117. *
  1118. * @param field the field to set
  1119. * @param value the value to set it to
  1120. * @see java.util.Calendar
  1121. */
  1122. private final void setField(int field, int value) {
  1123. if (cal == null) {
  1124. cal = new GregorianCalendar();
  1125. cal.setTimeInMillis(fastTime);
  1126. }
  1127. cal.set(field, value);
  1128. }
  1129. private synchronized static void makeStaticCalendars() {
  1130. if (staticCal == null) {
  1131. GregorianCalendar calendar = new GregorianCalendar();
  1132. utcCal = new GregorianCalendar(TimeZone.getTimeZone("GMT"));
  1133. defaultCenturyStart = calendar.get(Calendar.YEAR) - 80;
  1134. staticCal = calendar;
  1135. }
  1136. }
  1137. }