Format hour in hh (01-12 in AM/PM) format like 01, 02..12 in Java

Description

The following code shows how to format hour in hh (01-12 in AM/PM) format like 01, 02..12.

Example


/*from  w w w .  j  ava 2 s .c o  m*/
import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {

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

    SimpleDateFormat sdf = new SimpleDateFormat("hh");
    System.out.println("hour in hh format : " + 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