Class FastDateFormat
- All Implemented Interfaces:
Serializable,Cloneable
FastDateFormat is a fast and thread-safe version of
SimpleDateFormat.
This class can be used as a direct replacement to
SimpleDateFormat in most formatting situations.
This class is especially useful in multi-threaded server environments.
SimpleDateFormat is not thread-safe in any JDK version,
nor will it be as Sun have closed the bug/RFE.
Only formatting is supported, but all patterns are compatible with SimpleDateFormat (except time zones and some year patterns - see below).
Java 1.4 introduced a new pattern letter, 'Z', to represent
time zones in RFC822 format (eg. +0800 or -1100).
This pattern letter can be used here (on all JDK versions).
In addition, the pattern 'ZZ' has been made to represent
ISO8601 full format time zones (eg. +08:00 or -11:00).
This introduces a minor incompatibility with Java 1.4, but at a gain of
useful functionality.
Javadoc cites for the year pattern: For formatting, if the number of pattern letters is 2, the year is truncated to 2 digits; otherwise it is interpreted as a number. Starting with Java 1.7 a pattern of 'Y' or 'YYY' will be formatted as '2003', while it was '03' in former Java versions. FastDateFormat implements the behavior of Java 7.
- Since:
- 2.0
- Version:
- $Id: FastDateFormat.java 1057072 2011-01-10 01:55:57Z niallp $
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static classInner class to output a constant single character.private static interfaceInner class defining a numeric rule.private static classInner class to output a padded number.private static classHelper class for creating compound objects.private static interfaceInner class defining a rule.private static classInner class to output a constant string.private static classInner class to output one of a set of values.private static classInner class that acts as a compound key for time zone names.private static classInner class to output a time zone name.private static classInner class to output a time zone as a number+/-HHMMor+/-HH:MM.private static classInner class to output the twelve hour field.private static classInner class to output the twenty four hour field.private static classInner class to output a two digit month.private static classInner class to output a two digit number.private static classInner class to output a two digit year.private static classInner class to output an unpadded month.private static classInner class to output an unpadded number.Nested classes/interfaces inherited from class java.text.Format
Format.Field -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final Mapprivate static final Mapprivate static Stringprivate static final Mapprivate static final Mapprivate static final Mapstatic final intFULL locale dependent date or time style.static final intLONG locale dependent date or time style.static final intMEDIUM locale dependent date or time style.private final LocaleThe locale.private final booleanWhether the locale overrides the default.private intThe estimated maximum length.private final StringThe pattern.private FastDateFormat.Rule[]The parsed rules.private final TimeZoneThe time zone.private final booleanWhether the time zone overrides any on Calendars.private static final longRequired for serialization support.static final intSHORT locale dependent date or time style. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedFastDateFormat(String pattern, TimeZone timeZone, Locale locale) Constructs a new FastDateFormat. -
Method Summary
Modifier and TypeMethodDescriptionprotected StringBufferapplyRules(Calendar calendar, StringBuffer buf) Performs the formatting by applying the rules to the specified calendar.booleanCompares two objects for equality.format(long millis) Formats a millisecondlongvalue.format(long millis, StringBuffer buf) Formats a milliseondlongvalue into the suppliedStringBuffer.format(Object obj, StringBuffer toAppendTo, FieldPosition pos) Formats aDate,CalendarorLong(milliseconds) object.Formats aCalendarobject.format(Calendar calendar, StringBuffer buf) Formats aCalendarobject into the suppliedStringBuffer.Formats aDateobject.format(Date date, StringBuffer buf) Formats aDateobject into the suppliedStringBuffer.static FastDateFormatgetDateInstance(int style) Gets a date formatter instance using the specified style in the default time zone and locale.static FastDateFormatgetDateInstance(int style, Locale locale) Gets a date formatter instance using the specified style and locale in the default time zone.static FastDateFormatgetDateInstance(int style, TimeZone timeZone) Gets a date formatter instance using the specified style and time zone in the default locale.static FastDateFormatgetDateInstance(int style, TimeZone timeZone, Locale locale) Gets a date formatter instance using the specified style, time zone and locale.static FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle) Gets a date/time formatter instance using the specified style in the default time zone and locale.static FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle, Locale locale) Gets a date/time formatter instance using the specified style and locale in the default time zone.static FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle, TimeZone timeZone) Gets a date/time formatter instance using the specified style and time zone in the default locale.static FastDateFormatgetDateTimeInstance(int dateStyle, int timeStyle, TimeZone timeZone, Locale locale) Gets a date/time formatter instance using the specified style, time zone and locale.private static StringGets the default pattern.static FastDateFormatGets a formatter instance using the default pattern in the default locale.static FastDateFormatgetInstance(String pattern) Gets a formatter instance using the specified pattern in the default locale.static FastDateFormatgetInstance(String pattern, Locale locale) Gets a formatter instance using the specified pattern and locale.static FastDateFormatgetInstance(String pattern, TimeZone timeZone) Gets a formatter instance using the specified pattern and time zone.static FastDateFormatgetInstance(String pattern, TimeZone timeZone, Locale locale) Gets a formatter instance using the specified pattern, time zone and locale.Gets the locale used by this formatter.intGets an estimate for the maximum string length that the formatter will produce.Gets the pattern used by this formatter.static FastDateFormatgetTimeInstance(int style) Gets a time formatter instance using the specified style in the default time zone and locale.static FastDateFormatgetTimeInstance(int style, Locale locale) Gets a time formatter instance using the specified style and locale in the default time zone.static FastDateFormatgetTimeInstance(int style, TimeZone timeZone) Gets a time formatter instance using the specified style and time zone in the default locale.static FastDateFormatgetTimeInstance(int style, TimeZone timeZone, Locale locale) Gets a time formatter instance using the specified style, time zone and locale.Gets the time zone used by this formatter.(package private) static StringgetTimeZoneDisplay(TimeZone tz, boolean daylight, int style, Locale locale) Gets the time zone display name, using a cache for performance.booleanReturnstrueif the time zone of the calendar overrides the time zone of the formatter.inthashCode()Returns a hashcode compatible with equals.protected voidinit()Initializes the instance for first use.parseObject(String source, ParsePosition pos) Parsing is not supported.protected ListReturns a list of Rules given a pattern.protected StringparseToken(String pattern, int[] indexRef) Performs the parsing of tokens.private voidCreate the object after serialization.protected FastDateFormat.NumberRuleselectNumberRule(int field, int padding) Gets an appropriate rule for the padding required.toString()Gets a debugging string version of this formatter.Methods inherited from class java.text.Format
clone, format, formatToCharacterIterator, parseObject
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDRequired for serialization support.- See Also:
-
FULL
public static final int FULLFULL locale dependent date or time style.- See Also:
-
LONG
public static final int LONGLONG locale dependent date or time style.- See Also:
-
MEDIUM
public static final int MEDIUMMEDIUM locale dependent date or time style.- See Also:
-
SHORT
public static final int SHORTSHORT locale dependent date or time style.- See Also:
-
cDefaultPattern
-
cInstanceCache
-
cDateInstanceCache
-
cTimeInstanceCache
-
cDateTimeInstanceCache
-
cTimeZoneDisplayCache
-
mPattern
The pattern. -
mTimeZone
The time zone. -
mTimeZoneForced
private final boolean mTimeZoneForcedWhether the time zone overrides any on Calendars. -
mLocale
The locale. -
mLocaleForced
private final boolean mLocaleForcedWhether the locale overrides the default. -
mRules
The parsed rules. -
mMaxLengthEstimate
private transient int mMaxLengthEstimateThe estimated maximum length.
-
-
Constructor Details
-
FastDateFormat
Constructs a new FastDateFormat.
- Parameters:
pattern-SimpleDateFormatcompatible patterntimeZone- time zone to use,nullmeans use default forDateand value within forCalendarlocale- locale,nullmeans use system default- Throws:
IllegalArgumentException- if pattern is invalid ornull
-
-
Method Details
-
getInstance
Gets a formatter instance using the default pattern in the default locale.
- Returns:
- a date/time formatter
-
getInstance
Gets a formatter instance using the specified pattern in the default locale.
- Parameters:
pattern-SimpleDateFormatcompatible pattern- Returns:
- a pattern based date/time formatter
- Throws:
IllegalArgumentException- if pattern is invalid
-
getInstance
Gets a formatter instance using the specified pattern and time zone.
- Parameters:
pattern-SimpleDateFormatcompatible patterntimeZone- optional time zone, overrides time zone of formatted date- Returns:
- a pattern based date/time formatter
- Throws:
IllegalArgumentException- if pattern is invalid
-
getInstance
Gets a formatter instance using the specified pattern and locale.
- Parameters:
pattern-SimpleDateFormatcompatible patternlocale- optional locale, overrides system locale- Returns:
- a pattern based date/time formatter
- Throws:
IllegalArgumentException- if pattern is invalid
-
getInstance
Gets a formatter instance using the specified pattern, time zone and locale.
- Parameters:
pattern-SimpleDateFormatcompatible patterntimeZone- optional time zone, overrides time zone of formatted datelocale- optional locale, overrides system locale- Returns:
- a pattern based date/time formatter
- Throws:
IllegalArgumentException- if pattern is invalid ornull
-
getDateInstance
Gets a date formatter instance using the specified style in the default time zone and locale.
- Parameters:
style- date style: FULL, LONG, MEDIUM, or SHORT- Returns:
- a localized standard date formatter
- Throws:
IllegalArgumentException- if the Locale has no date pattern defined- Since:
- 2.1
-
getDateInstance
Gets a date formatter instance using the specified style and locale in the default time zone.
- Parameters:
style- date style: FULL, LONG, MEDIUM, or SHORTlocale- optional locale, overrides system locale- Returns:
- a localized standard date formatter
- Throws:
IllegalArgumentException- if the Locale has no date pattern defined- Since:
- 2.1
-
getDateInstance
Gets a date formatter instance using the specified style and time zone in the default locale.
- Parameters:
style- date style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted date- Returns:
- a localized standard date formatter
- Throws:
IllegalArgumentException- if the Locale has no date pattern defined- Since:
- 2.1
-
getDateInstance
Gets a date formatter instance using the specified style, time zone and locale.
- Parameters:
style- date style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted datelocale- optional locale, overrides system locale- Returns:
- a localized standard date formatter
- Throws:
IllegalArgumentException- if the Locale has no date pattern defined
-
getTimeInstance
Gets a time formatter instance using the specified style in the default time zone and locale.
- Parameters:
style- time style: FULL, LONG, MEDIUM, or SHORT- Returns:
- a localized standard time formatter
- Throws:
IllegalArgumentException- if the Locale has no time pattern defined- Since:
- 2.1
-
getTimeInstance
Gets a time formatter instance using the specified style and locale in the default time zone.
- Parameters:
style- time style: FULL, LONG, MEDIUM, or SHORTlocale- optional locale, overrides system locale- Returns:
- a localized standard time formatter
- Throws:
IllegalArgumentException- if the Locale has no time pattern defined- Since:
- 2.1
-
getTimeInstance
Gets a time formatter instance using the specified style and time zone in the default locale.
- Parameters:
style- time style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted time- Returns:
- a localized standard time formatter
- Throws:
IllegalArgumentException- if the Locale has no time pattern defined- Since:
- 2.1
-
getTimeInstance
Gets a time formatter instance using the specified style, time zone and locale.
- Parameters:
style- time style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted timelocale- optional locale, overrides system locale- Returns:
- a localized standard time formatter
- Throws:
IllegalArgumentException- if the Locale has no time pattern defined
-
getDateTimeInstance
Gets a date/time formatter instance using the specified style in the default time zone and locale.
- Parameters:
dateStyle- date style: FULL, LONG, MEDIUM, or SHORTtimeStyle- time style: FULL, LONG, MEDIUM, or SHORT- Returns:
- a localized standard date/time formatter
- Throws:
IllegalArgumentException- if the Locale has no date/time pattern defined- Since:
- 2.1
-
getDateTimeInstance
Gets a date/time formatter instance using the specified style and locale in the default time zone.
- Parameters:
dateStyle- date style: FULL, LONG, MEDIUM, or SHORTtimeStyle- time style: FULL, LONG, MEDIUM, or SHORTlocale- optional locale, overrides system locale- Returns:
- a localized standard date/time formatter
- Throws:
IllegalArgumentException- if the Locale has no date/time pattern defined- Since:
- 2.1
-
getDateTimeInstance
Gets a date/time formatter instance using the specified style and time zone in the default locale.
- Parameters:
dateStyle- date style: FULL, LONG, MEDIUM, or SHORTtimeStyle- time style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted date- Returns:
- a localized standard date/time formatter
- Throws:
IllegalArgumentException- if the Locale has no date/time pattern defined- Since:
- 2.1
-
getDateTimeInstance
public static FastDateFormat getDateTimeInstance(int dateStyle, int timeStyle, TimeZone timeZone, Locale locale) Gets a date/time formatter instance using the specified style, time zone and locale.
- Parameters:
dateStyle- date style: FULL, LONG, MEDIUM, or SHORTtimeStyle- time style: FULL, LONG, MEDIUM, or SHORTtimeZone- optional time zone, overrides time zone of formatted datelocale- optional locale, overrides system locale- Returns:
- a localized standard date/time formatter
- Throws:
IllegalArgumentException- if the Locale has no date/time pattern defined
-
getTimeZoneDisplay
Gets the time zone display name, using a cache for performance.
- Parameters:
tz- the zone to querydaylight- true if daylight savingsstyle- the style to useTimeZone.LONGorTimeZone.SHORTlocale- the locale to use- Returns:
- the textual name of the time zone
-
getDefaultPattern
Gets the default pattern.
- Returns:
- the default pattern
-
init
protected void init()Initializes the instance for first use.
-
parsePattern
Returns a list of Rules given a pattern.
- Returns:
- a
Listof Rule objects - Throws:
IllegalArgumentException- if pattern is invalid
-
parseToken
Performs the parsing of tokens.
- Parameters:
pattern- the patternindexRef- index references- Returns:
- parsed token
-
selectNumberRule
Gets an appropriate rule for the padding required.
- Parameters:
field- the field to get a rule forpadding- the padding required- Returns:
- a new rule with the correct padding
-
format
Formats a
Date,CalendarorLong(milliseconds) object. -
format
Formats a millisecond
longvalue.- Parameters:
millis- the millisecond value to format- Returns:
- the formatted string
- Since:
- 2.1
-
format
Formats a
Dateobject.- Parameters:
date- the date to format- Returns:
- the formatted string
-
format
Formats a
Calendarobject.- Parameters:
calendar- the calendar to format- Returns:
- the formatted string
-
format
Formats a milliseond
longvalue into the suppliedStringBuffer.- Parameters:
millis- the millisecond value to formatbuf- the buffer to format into- Returns:
- the specified string buffer
- Since:
- 2.1
-
format
Formats a
Dateobject into the suppliedStringBuffer.- Parameters:
date- the date to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
format
Formats a
Calendarobject into the suppliedStringBuffer.- Parameters:
calendar- the calendar to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
applyRules
Performs the formatting by applying the rules to the specified calendar.
- Parameters:
calendar- the calendar to formatbuf- the buffer to format into- Returns:
- the specified string buffer
-
parseObject
Parsing is not supported.
- Specified by:
parseObjectin classFormat- Parameters:
source- the string to parsepos- the parsing position- Returns:
nullas not supported
-
getPattern
Gets the pattern used by this formatter.
- Returns:
- the pattern,
SimpleDateFormatcompatible
-
getTimeZone
Gets the time zone used by this formatter.
This zone is always used for
Dateformatting. If aCalendaris passed in to be formatted, the time zone on that may be used depending ongetTimeZoneOverridesCalendar().- Returns:
- the time zone
-
getTimeZoneOverridesCalendar
public boolean getTimeZoneOverridesCalendar()Returns
trueif the time zone of the calendar overrides the time zone of the formatter.- Returns:
trueif time zone of formatter overridden for calendars
-
getLocale
Gets the locale used by this formatter.
- Returns:
- the locale
-
getMaxLengthEstimate
public int getMaxLengthEstimate()Gets an estimate for the maximum string length that the formatter will produce.
The actual formatted length will almost always be less than or equal to this amount.
- Returns:
- the maximum formatted length
-
equals
Compares two objects for equality.
-
hashCode
public int hashCode()Returns a hashcode compatible with equals.
-
toString
Gets a debugging string version of this formatter.
-
readObject
Create the object after serialization. This implementation reinitializes the transient properties.- Parameters:
in- ObjectInputStream from which the object is being deserialized.- Throws:
IOException- if there is an IO issue.ClassNotFoundException- if a class cannot be found.
-