物探论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2284|回复: 0

[GMT] CST和GMT

[复制链接]
发表于 2013-3-11 21:37:29 | 显示全部楼层 |阅读模式

GMT(Greenwich Mean Time)代表格林尼治标准时间,这个大家都知道。  
而CST却同时可以代表如下 4 个不同的时区:  
Central Standard Time (USA) UT-6:00
Central Standard Time (Australia) UT+9:30
China Standard Time UT+8:00
Cuba Standard Time UT-4:00  

可见,CST可以同时表示美国,澳大利亚,中国,古巴四个国家的标准时间。  

前面提到的通过 Java 获取的CST时间用的是China Standard Time,而客户端JavaScript则默认采用的是美国
的中部时间。  

所以将 Fri Aug 28 09:37:46 CST 2009 加上 6 个小时,再加上 8 个小时,就等于 Fri Aug 28 2009 23:37:46
GMT+0800  

可见,在以后的编程中为了避免错误,还是不要使用CST时间,而尽量采用GMT时间。

GMT与CST的转换
方法一:
Date date = new Date();
date.toGMTString();   // jdk高版本中,已经过时,不推荐。

方法二:
DateFormat cstFormat = new SimpleDateFormat();
DateFormat gmtFormat = new SimpleDateFormat();
TimeZone gmtTime = TimeZone.getTimeZone("GMT");
TimeZone cstTime = TimeZone.getTimeZone("CST");      
cstFormat.setTimeZone(gmtTime);
gmtFormat.setTimeZone(cstTime);
System.out.println("GMT Time: " + cstFormat.format(date));
System.out.println("CST Time: " + gmtFormat.format(date));

方法三:
public Date getCST(String strGMT) throws ParseException {
   DateFormat df = new SimpleDateFormat("EEE, d-MMM-yyyy HH:mm:ss z", Locale.ENGLISH);
   return df.parse(strGMT);
}

public String getGMT(Date dateCST) {
   DateFormat df = new SimpleDateFormat("EEE, d-MMM-yyyy HH:mm:ss z", Locale.ENGLISH);
   df.setTimeZone(TimeZone.getTimeZone("GMT")); // modify Time Zone.
   return(df.format(dateCST));
}

来自http://arkshine.blog.51cto.com/4232403/858740




回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|物探论坛 ( 鄂ICP备12002012号 微信号:iwutan )

GMT+8, 2024-4-27 12:33 , Processed in 0.295654 second(s), 15 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表