首頁 >Java >java教程 >為什麼我的 Java 程式碼在轉換為特定時區時顯示不正確的時間,如何修復它?

為什麼我的 Java 程式碼在轉換為特定時區時顯示不正確的時間,如何修復它?

Linda Hamilton
Linda Hamilton原創
2024-10-29 14:53:02322瀏覽

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn