Format a date with EEE, MMM d, ''yy", "h:mm a in Java

Description

The following code shows how to format a date with EEE, MMM d, ''yy", "h:mm a.

Example


//  ww  w  . ja v a  2s  .  c o  m
import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {

  public static void main(String[] argv) {
    SimpleDateFormat f = new SimpleDateFormat("EEE, MMM d, ''yy, h:mm a");
    System.out.println(f.format(new 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