62,634
社区成员




public static void main(String[] args) {
SimpleDateFormat sf = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.US);
sf.setTimeZone(TimeZone.getTimeZone("US/Central"));
System.out.println(sf.format(new Date()));
}