Mega Code Archive

 
Categories / Java / Development Class
 

Format TimeZone in Z (RFC 822) format like -8000

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