Java时间:GMT以及UTC
GMT即格林威治标准时间,以英国伦敦郊区皇家格林威治天文台的标准时间。世界被分为24个时区。而北京在东八区
UTC即世界协调时间,以格林威治时间为准,经过平均太阳时等修正后,以秒为单位的国际原子时所综合计算而成的时间。所以UTC比GMT更加精准。
Java Date使用UTC时间,如Tue Nov 11 16:59:08 CST 2014,CST表示China Standard Time UT+8:00
由于Date的相关 API 不易于实现国际化。从 JDK 1.1 开始,应该使用 Calendar 类来操作“年月日时分秒”,同时可以通过 DateFormat 类来格式化和解析日期字符串。Date 中的相应方法已废弃。
//T代表后面跟着时间,Z代表UTC统一时间 String tpTme = "2014-11-11T14:00:00+0800"; String pmTime = "2014-11-07T14:00:00Z"; @Test public void testTPTime() throws Exception { //2014-11-11T14:00:00+08:00 SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ"); String time = format.format(new Date()); System.out.println(time); } @Test public void testPMTime() throws Exception { //2014-11-07T14:00:00Z SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); String time = format.format(new Date()); System.out.println(time); } //转换回来 @Test public void testParsePMTime() throws Exception { SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); Date time = df.parse(pmTime); System.out.println(time); } //转换回来 @Test public void testParseTPTime() throws Exception { SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ"); Date time = df.parse(tpTme); System.out.println(time); }