Mega Code Archive

 
Categories / Java Tutorial / Development
 

Format TimeZone in z (General time zone) format like EST

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("zzz");     System.out.println("TimeZone in z format : " + sdf.format(date));   } } //TimeZone in z format : PST