Format date with zzzz in Java
Description
The following code shows how to format date with zzzz.
Example
/* w w w . java2 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("zzzz");
String s = formatter.format(new Date());
System.out.println(s);
}
}
The code above generates the following result.