Format date to the day in week with E in Java

Description

The following code shows how to format date to the day in week with E.

Example


//from   w  w  w .  j a v  a2  s  .  c o  m
import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
  public static void main(String[] argv) throws Exception {

    Format formatter = new SimpleDateFormat("E"); 
    String s = formatter.format(new Date());
    System.out.println(s);
  }
}

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