惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 司徒正美
D
Docker
B
Blog
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
S
SegmentFault 最新的问题
小众软件
小众软件
J
Java Code Geeks
美团技术团队
腾讯CDC
MyScale Blog
MyScale Blog
爱范儿
爱范儿
H
Help Net Security
宝玉的分享
宝玉的分享
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】

博客园 - 笨笨

UTF-8 Oracle生成MD5 How do you define Success? pbrun su -root Shell/Windows命令备忘 爸妈 Spring中的exception处理 What is ieHTTPHeaders? SLA(Service Level Agreement) Cluster/Fail-Over/Load Banlance Thread Dump 非常郁闷 Bea World 2005 materials available now 程序依赖库的管理 EJB琐碎的想法 J2EE的世界越来越精彩了 LDAP信息模型 人类进入文明史的标志 Socket
TimeZone
笨笨 · 2005-12-23 · via 博客园 - 笨笨

1     TimeZone gmt = TimeZone.getTimeZone("GMT");
2 
3     Calendar epoch1900 = Calendar.getInstance(gmt);

可以解决我们的环境中各个服务器之间的时区不同步的问题。

 1     /**
 2      * Gets the <code>TimeZone</code> for the given ID.
 3      *
 4      * @param ID the ID for a <code>TimeZone</code>, either an abbreviation
 5      * such as "PST", a full name such as "America/Los_Angeles", or a custom
 6      * ID such as "GMT-8:00". Note that the support of abbreviations is
 7      * for JDK 1.1.x compatibility only and full names should be used.
 8      *
 9      * @return the specified <code>TimeZone</code>, or the GMT zone if the given ID
10      * cannot be understood.
11      */
12     public static synchronized TimeZone getTimeZone(String ID) {
13     return getTimeZone(ID, true);
14     }
15 
16     private static TimeZone getTimeZone(String ID, boolean fallback) {
17     TimeZone tz = ZoneInfo.getTimeZone(ID);
18     if (tz == null) {
19         tz = parseCustomTimeZone(ID);
20         if (tz == null && fallback) {
21         tz = new ZoneInfo(GMT_ID, 0);
22         }
23     }
24     return tz;
25     }