普通的時間轉換問題我這裡就不再羅嗦了,我想大家應該都會那種低級的轉換問題吧,現在我向大家總結一下如何轉換GMT時間格式,這種格式的轉換方法網上還不是很多,所以有必要總結一下,也算給有需要的朋友一個小小的幫助啦。
首先先來了解一下GMT的時間格式:
Mon Feb 13 08:00:00 GMT+08:00 2012 可能還會有其他的格式類似 Sun Sep 02 2012 08:00:00 GMT+08:00 只是順序改變而已。
那麼我們如何將這種格式轉換成普通date格式呢,方法如下:
第一種實現方法:
[html]
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
/**
*
* @author yaohucaizi
*/
public class DateFormat {
public static void main(String[] args) throws ParseException {
String s = "Mon Feb 13 08:00:00 GMT+08:00 2012";
// String s = "Sun Sep 02 2012 08:00:00 GMT+08:00";
SimpleDateFormat sf = new SimpleDateFormat("EEE MMM dd hh:mm:ss z yyyy", Locale.ENGLISH);
// SimpleDateFormat sf = new SimpleDateFormat("EEE MMM dd yyyy hh:mm:ss z", Locale.ENGLISH);
Date date = sf.parse(s);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String result = sdf.format(date);
System.out.println(result);
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
/**
*
* @author yaohucaizi
*/
public class DateFormat {
public static void main(String[] args) throws ParseException {
String s = "Mon Feb 13 08:00:00 GMT+08:00 2012";
// String s = "Sun Sep 02 2012 08:00:00 GMT+08:00";
SimpleDateFormat sf = new SimpleDateFormat("EEE MMM dd hh:mm:ss z yyyy", Locale.ENGLISH);
// SimpleDateFormat sf = new SimpleDateFormat("EEE MMM dd yyyy hh:mm:ss z", Locale.ENGLISH);
Date date = sf.parse(s);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String result = sdf.format(date);
System.out.println(result);
}
}
第二種方法:
首先將GMT日期轉換成long型毫秒數然後再進一步的轉換,看代碼:
[html]
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
/**
*
* @author yaohucaizi
*/
public class DateFormat {
public static final String SOURCE = "Wed Feb 13 08:00:00 +0800 2012";
public static void main(String[] args) throws ParseException {
SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss Z yyyy", new Locale("ENGLISH", "CHINA"));
Date myDate = sdf.parse(SOURCE);
System.out.println(myDate);
sdf.applyPattern("EEE MMM dd HH:mm:ss Z yyyy");
System.out.println(sdf.format(myDate));
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", new Locale("CHINESE", "CHINA"));
System.out.println(sdf2.format(myDate));
sdf2.applyPattern("yyyy年MM月dd日 HH時mm分ss秒");
System.out.println(sdf2.format(myDate));
long miliSeconds = myDate.getTime();
System.out.println("自 1970 年 1 月 1 日 00:00:00 GMT 以來此 Date 對象經過的毫秒數為:" + miliSeconds + "毫秒");
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
/**
*
* @author yaohucaizi
*/
public class DateFormat {
public static final String SOURCE = "Wed Feb 13 08:00:00 +0800 2012";
public static void main(String[] args) throws ParseException {
SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss Z yyyy", new Locale("ENGLISH", "CHINA"));
Date myDate = sdf.parse(SOURCE);
System.out.println(myDate);
sdf.applyPattern("EEE MMM dd HH:mm:ss Z yyyy");
System.out.println(sdf.format(myDate));
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", new Locale("CHINESE", "CHINA"));
System.out.println(sdf2.format(myDate));
sdf2.applyPattern("yyyy年MM月dd日 HH時mm分ss秒");
System.out.println(sdf2.format(myDate));
long miliSeconds = myDate.getTime();
System.out.println("自 1970 年 1 月 1 日 00:00:00 GMT 以來此 Date 對象經過的毫秒數為:" + miliSeconds + "毫秒");
}
}
輸出結果為:
[html]
Mon Feb 13 08:00:00 GMT+08:00 2012
Mon Feb 13 08:00:00 +0800 2012
2012-02-13 08:00:00
2012年02月13日 08時00分00秒
自 1970 年 1 月 1 日 00:00:00 GMT 以來此 Date 對象經過的毫秒數為:1329091200000毫秒
Mon Feb 13 08:00:00 GMT+08:00 2012
Mon Feb 13 08:00:00 +0800 2012
2012-02-13 08:00:00
2012年02月13日 08時00分00秒
自 1970 年 1 月 1 日 00:00:00 GMT 以來此 Date 對象經過的毫秒數為:1329091200000毫秒
GMT(Greenwich Mean Time)是格林尼治平時:
由於地球軌道並非圓形,其運行速度又隨著地球與太陽的距離改變而出現變化,因此視太陽時欠缺均勻性。視太陽日的長度同時亦受到地球自轉軸相對軌道面的傾斜度所影響。為著要糾正上述的不均勻性,天文學家計算地球非圓形軌跡與極軸傾斜對視太陽時的效應。平太陽時就是指經修訂後的視太陽時。在格林尼治子午線上的平太陽時稱為世界時(UTC),又叫格林尼治平時(GMT)。