I run follow code :
SimpleDateFormat sdf = new SimpleDateFormat("YYYY-MM-dd hh:mm zzz");
Calendar cal = Calendar.getInstance();
Date date = cal.getTime();
System.out.println(date);
System.out.println(sdf.format(date));
and I got :
Mon Jan 25 18:32:52 CST 2016
2016-01-25 06:32 CST
I am in China . why ?