Formate date and time to complete time and date information in Java

Description

The following code shows how to formate date and time to complete time and date information.

Example


// w w  w.  ja v a2  s. c  o m
import java.util.Calendar;
import java.util.Formatter;

public class Main {
  public static void main(String args[]) {
    Formatter fmt = new Formatter();
    Calendar cal = Calendar.getInstance();

    fmt = new Formatter();
    fmt.format("%tc", cal);
    System.out.println(fmt);

  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    Date »




Date Get
Date Set
Date Format
Date Compare
Date Convert
Date Calculation
Date Parse
Timezone