public final class FastDatePrinter
extends java.lang.Object
FastDatePrinter is a fast and thread-safe version of
SimpleDateFormat.
Since FastDatePrinter is thread safe, you can use a static member instance:
private static final DatePrinter DATE_PRINTER = FastDateFormat.getInstance("yyyy-MM-dd");
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 by this class, 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
ISO 8601 extended 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.
Starting with JDK7, ISO 8601 support was added using the pattern 'X'.
To maintain compatibility, 'ZZ' will continue to be supported, but using
one of the 'X' formats is recommended.
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. FastDatePrinter implements the behavior of Java 7.
| Modifier and Type | Field and Description |
|---|---|
static int |
FULL
FULL locale dependent date or time style.
|
static int |
LONG
LONG locale dependent date or time style.
|
static int |
MEDIUM
MEDIUM locale dependent date or time style.
|
static int |
SHORT
SHORT locale dependent date or time style.
|
| Constructor and Description |
|---|
FastDatePrinter(java.lang.String pattern,
java.util.TimeZone timeZone,
java.util.Locale locale)
Constructs a new FastDatePrinter.
|
| Modifier and Type | Method and Description |
|---|---|
protected java.lang.StringBuffer |
applyRules(java.util.Calendar calendar,
java.lang.StringBuffer buf)
Deprecated.
|
boolean |
equals(java.lang.Object obj)
Compares two objects for equality.
|
java.lang.String |
format(java.util.Calendar calendar) |
<B extends java.lang.Appendable> |
format(java.util.Calendar calendar,
B buf) |
java.lang.StringBuffer |
format(java.util.Calendar calendar,
java.lang.StringBuffer buf) |
java.lang.String |
format(java.util.Date date) |
<B extends java.lang.Appendable> |
format(java.util.Date date,
B buf) |
java.lang.StringBuffer |
format(java.util.Date date,
java.lang.StringBuffer buf) |
java.lang.String |
format(long millis) |
<B extends java.lang.Appendable> |
format(long millis,
B buf) |
java.lang.StringBuffer |
format(long millis,
java.lang.StringBuffer buf) |
java.lang.StringBuffer |
format(java.lang.Object obj,
java.lang.StringBuffer toAppendTo,
java.text.FieldPosition pos)
Deprecated.
Use {
format(Date), {format(Calendar), {format(long), or {format(Object) |
java.util.Locale |
getLocale() |
int |
getMaxLengthEstimate()
Gets an estimate for the maximum string length that the
formatter will produce.
|
java.lang.String |
getPattern() |
java.util.TimeZone |
getTimeZone() |
int |
hashCode()
Returns a hash code compatible with equals.
|
protected java.util.List<com.qiniu.android.utils.FastDatePrinter.Rule> |
parsePattern()
Returns a list of Rules given a pattern.
|
protected java.lang.String |
parseToken(java.lang.String pattern,
int[] indexRef)
Performs the parsing of tokens.
|
protected com.qiniu.android.utils.FastDatePrinter.NumberRule |
selectNumberRule(int field,
int padding)
Gets an appropriate rule for the padding required.
|
java.lang.String |
toString()
Gets a debugging string version of this formatter.
|
public static final int FULL
public static final int LONG
public static final int MEDIUM
public static final int SHORT
public FastDatePrinter(java.lang.String pattern,
java.util.TimeZone timeZone,
java.util.Locale locale)
Constructs a new FastDatePrinter.
pattern - SimpleDateFormat compatible patterntimeZone - non-null time zone to uselocale - non-null locale to usejava.lang.NullPointerException - if pattern, timeZone, or locale is null.protected java.util.List<com.qiniu.android.utils.FastDatePrinter.Rule> parsePattern()
Returns a list of Rules given a pattern.
List of Rule objectsjava.lang.IllegalArgumentException - if pattern is invalidprotected java.lang.String parseToken(java.lang.String pattern,
int[] indexRef)
Performs the parsing of tokens.
pattern - the patternindexRef - index referencesprotected com.qiniu.android.utils.FastDatePrinter.NumberRule selectNumberRule(int field,
int padding)
Gets an appropriate rule for the padding required.
field - the field to get a rule forpadding - the padding required@Deprecated
public java.lang.StringBuffer format(java.lang.Object obj,
java.lang.StringBuffer toAppendTo,
java.text.FieldPosition pos)
format(Date), {format(Calendar), {format(long), or {format(Object)Formats a Date, Calendar or
Long (milliseconds) object.
obj - the object to formattoAppendTo - the buffer to append topos - the position - ignoredpublic java.lang.String format(long millis)
public java.lang.String format(java.util.Date date)
public java.lang.String format(java.util.Calendar calendar)
public java.lang.StringBuffer format(long millis,
java.lang.StringBuffer buf)
public java.lang.StringBuffer format(java.util.Date date,
java.lang.StringBuffer buf)
public java.lang.StringBuffer format(java.util.Calendar calendar,
java.lang.StringBuffer buf)
public <B extends java.lang.Appendable> B format(long millis,
B buf)
public <B extends java.lang.Appendable> B format(java.util.Date date,
B buf)
public <B extends java.lang.Appendable> B format(java.util.Calendar calendar,
B buf)
@Deprecated
protected java.lang.StringBuffer applyRules(java.util.Calendar calendar,
java.lang.StringBuffer buf)
format(Calendar) or format(Calendar, Appendable)calendar - the calendar to formatbuf - the buffer to format intopublic java.lang.String getPattern()
public java.util.TimeZone getTimeZone()
public java.util.Locale getLocale()
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.
public boolean equals(java.lang.Object obj)
Compares two objects for equality.
equals in class java.lang.Objectobj - the object to compare totrue if equalpublic int hashCode()
Returns a hash code compatible with equals.
hashCode in class java.lang.Objectpublic java.lang.String toString()
Gets a debugging string version of this formatter.
toString in class java.lang.Object