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中文网其他相关文章!