首页 > Java > java教程 > 正文

为什么我的 Java 代码在转换为特定时区时显示不正确的时间,如何修复它?

Linda Hamilton
发布: 2024-10-29 14:53:02
原创
307 人浏览过

Why is my Java code showing an incorrect time when converting to a specific timezone, and how can I fix it?

Java 中的日期和时间转换为特定时区

在尝试将当前系统日期和时间转换为特定时区时,您遇到预期输出与所需时区的实际时间之间的差异。为了解决这个问题,我们将深入研究您提供的代码并找出导致时差的潜在原因。

代码使用 Calendar 和 SimpleDateFormat 类来处理日期和时间操作。您将当前时间设置为 currentdate 并使用格式化程序对象将其格式化为字符串。然后,您为目标时区(在您的情况下为 CST)创建一个 TimeZone 对象,并将其设置为格式化程序的时区。最后,解析格式化的日期字符串以获得指定时区的结果日期。

出现差异的原因是格式化程序在将本地时区的日期转换为目标时区之前对其进行了格式化。为了解决这个问题,您必须通过添加或减去本地时区和目标时区之间的偏移差来显式调整时间。

以下是应提供正确时间转换的更新代码片段:

<code class="java">// Create a calendar and set it to the local timezone
Calendar calendar = Calendar.getInstance();
TimeZone fromTimeZone = calendar.getTimeZone();

// Create a calendar for the target timezone
TimeZone toTimeZone = TimeZone.getTimeZone("CST");

// Convert the current time to the local timezone
calendar.setTimeZone(fromTimeZone);
calendar.add(Calendar.MILLISECOND, fromTimeZone.getRawOffset() * -1);
if (fromTimeZone.inDaylightTime(calendar.getTime())) {
    calendar.add(Calendar.MILLISECOND, calendar.getTimeZone().getDSTSavings() * -1);
}

// Convert the time to the target timezone
calendar.add(Calendar.MILLISECOND, toTimeZone.getRawOffset());
if (toTimeZone.inDaylightTime(calendar.getTime())) {
    calendar.add(Calendar.MILLISECOND, toTimeZone.getDSTSavings());
}

// Get the final date and time in the target timezone
Date theResult = calendar.getTime();

System.out.println("The current time in India is  :: " + currentdate.getTime());
System.out.println("The date and time in :: " + toTimeZone.getDisplayName() + " is ::" + theResult);</code>
登录后复制

通过根据时区偏移调整时间,您现在应该获得指定时区的正确日期和时间。

以上是为什么我的 Java 代码在转换为特定时区时显示不正确的时间,如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板