我想使用此代碼的時間戳我已經轉換,但輸出是完全錯誤的,輸出爲17/01/1970十六時56分28秒!它應該是2014年8月7日下午五點14分59秒轉換時期時間戳可讀的日期不工作
Date date = new Date(1407388499);
DateFormat format = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
format.setTimeZone(TimeZone.getTimeZone("Etc/UTC"));
String formatted = format.format(date);
System.out.println(formatted);
format.setTimeZone(TimeZone.getTimeZone("Australia/Sydney"));
formatted = format.format(date);
System.out.println(formatted);
請幫助我
日期預計毫秒數,而不是秒,因爲時代。 – assylias 2014-09-11 07:38:34