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