SimpleDateFormat.format
Class Overview | Class Members | 
  This Package | 
All Packages
 public StringBuffer format( Date date,
                            StringBuffer toAppendTo,
                            FieldPosition pos )
Parameters
-  date 
-  the date-time value to be formatted into a date-time string.
    
-  toAppendTo 
-  where the new date-time text is to be appended.
    
-  pos 
-  the formatting position. On input: an alignment field,
 if desired. On output: the offsets of the alignment field.
    
Returns
     the formatted date-time string.
    Description
 Overrides DateFormat
 Formats a date or time, which is the standard millis
 since 24:00 GMT, Jan 1, 1970.
 
Example: using the US locale:
 "yyyy.MM.dd e 'at' HH:mm:ss zzz" ->> 1996.07.10 AD at 15:08:56 PDT
  
Overrides
     format in class DateFormat
    
See Also
     DateFormat