0
我將當前日期轉換爲GMT時間。GWT將當前日期轉換爲GMT
結果是不一致的,由於這個我的日期時間計算是worng。
DateTimeFormat df = DateTimeFormat.getFormat("dd MMM yyyy hh:mm:ss");
String gmtStr = new Date().toGMTString().replace("GMT", "").trim();
long deptime= depTime - df.parse(gmtStr).getTime();
deptime = deptime/1000;
seconds = (deptime % 60);
minutes = (deptime % 3600)/60;
hours = (deptime/3600);