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

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

博客园 - 笨笨

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     }