JDK6 中的 TimeZone.setDefault 更改

我刚刚注意到 JDK 6 设置默认 TimeZone 的方法与 JDK5 不同.

以前,新的默认值将存储在线程局部变量中.使用 JDK6(我刚刚查看了 1.6.0.18),实现发生了变化,因此如果用户可以写入user.timezone"属性,或者如果没有安装 SecurityManager,则时区会在 VM 范围内更改!否则会发生线程局部变化.

我错了吗?这似乎是一个相当大的变化,我在网上找不到任何关于它的信息.

这里是JDK6代码:

 private static boolean hasPermission() {
  boolean hasPermission = true;
  SecurityManager sm = System.getSecurityManager();
  if (sm != null) {
   try {
    sm.checkPermission(new PropertyPermission("user.timezone","write"));
   } catch (SecurityException e) {
    hasPermission = false;
   }
  }
  return hasPermission;
 }

 /**
  * Sets the <code>TimeZone</code> that is
  * returned by the <code>getDefault</code> method.  If <code>zone</code>
  * is null,reset the default to the value it had originally when the
  * VM first started.
  * @param zone the new default time zone
  * @see #getDefault
  */
 public static void setDefault(TimeZone zone)
 {
  if (hasPermission()) {
   synchronized (TimeZone.class) {
    defaultTimeZone = zone;
    defaultZoneTL.set(null);
   }
  } else {
   defaultZoneTL.set(zone);
  }
 }

之前(在 JDK5 中)它只是:

 /**
  * Sets the <code>TimeZone</code> that is
  * returned by the <code>getDefault</code> method.  If <code>zone</code>
  * is null,reset the default to the value it had originally when the
  * VM first started.
  * @param zone the new default time zone
  * @see #getDefault
  */
 public static synchronized void setDefault(TimeZone zone)
 {
  defaultZoneTL.set(zone);
 }
buyitgo 回答:JDK6 中的 TimeZone.setDefault 更改

搜索bug数据库其实是个好主意:)

http://bugs.sun.com/view_bug.do?bug_id=6352812

还有(重新文档):

http://bugs.sun.com/view_bug.do?bug_id=6181786

总结:JDK 1.5 是该规则的一个例外,JDK 1.6 一切都恢复了正常",根据文档,时区更改是 VM 范围内的.

这篇关于JDK6 中的 TimeZone.setDefault 更改的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持前端之家!

本文链接:https://www.f2er.com/3175515.html

大家都在问