Format time in AM/PM with HH:mm:ss a in Java

Description

The following code shows how to format time in AM/PM with HH:mm:ss a.

Example


//from   www  .  ja  v a  2s.  c  o  m
import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {

  public static void main(String[] args) {
    Date date = new Date();

    String strDateFormat = "HH:mm:ss a";
    SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat);
    System.out.println(sdf.format(date));
  }
}

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