Formatting time and date : Formatter « Development Class « Java






Formatting time and date

  

/**
 *Output:
10:35:15 AM
Wed Apr 26 10:35:15 PDT 2006
10:35
April Apr 04
 */

import java.util.Calendar;
import java.util.Formatter;

public class MainClass {
    public static void main(String args[]) { 
      Formatter fmt = new Formatter(); 
      Calendar cal = Calendar.getInstance(); 
   
      fmt.format("%tr", cal); 
      System.out.println(fmt); 
   
      fmt = new Formatter(); 
      fmt.format("%tc", cal); 
      System.out.println(fmt); 
   
      fmt = new Formatter(); 
      fmt.format("%tl:%tM", cal, cal); 
      System.out.println(fmt); 
   
      fmt = new Formatter(); 
      fmt.format("%tB %tb %tm", cal, cal, cal); 
      System.out.println(fmt); 
    } 
  }


           
         
    
  








Related examples in the same category

1.Formatter: format(String format, Object... args)
2.Formatter: %g
3.Demonstrate the %n and %% format specifiers
4.Demonstrate a field-width specifier
5.Create a table of squares and cubes
6.Demonstrate the precision modifier
7.Demonstrate left justification
8.Demonstrate the space format specifiers
9.Limit the number of decimal digits by specifying the precision
10.Using group separators.
11.Show positive values with a leading + and negative values within parentheses.
12.Use Formatter to vertically align numeric values.
13.Use Formatter to left-justify strings within a table.
14.Display several time and date formats
15.using the %t specifier with Formatter.
16.Display 12-hour time format
17.Display 24-hour time format.
18.Display short date format.
19.Display date using full names.
20.Display complete time and date information: using %T rather than %t.
21.Display hour and minute, and include AM or PM indicator.
22.The Time and Date Format Suffixes
23.locale-specific formatting.
24.Write formatted output directly to the console and to a file.
25.Formatter.ioException()
26.new Formatter(new OutputStream("test.fmt"))
27.Use arguments indexes to simplify the creation of a custom time and date format
28.Apply a mask to String