將時間戳(以毫秒為單位)轉換為Java 中人類可讀的時間
使用時間戳時,通常需要將其從原始格式轉換(從紀元開始經過的毫秒數)轉換為更易讀的字串表示形式。特別是,我們可能希望將長時間戳轉換為包含小時、分鐘、秒和毫秒的格式化時間字串。
要在 Java 中實現此轉換,請考慮以下方法:
long timestamp = 1200; // Example timestamp in milliseconds // Create a Date object from the timestamp Date date = new Date(timestamp); // Create a SimpleDateFormat object to format the date SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss.SSS"); // Set the time zone to UTC for consistent formatting formatter.setTimeZone(TimeZone.getTimeZone("UTC")); // Format the date and store it in a string String formattedTime = formatter.format(date); // Print the formatted time System.out.println(formattedTime);
此程式碼將為 1200 毫秒的輸入時間戳產生輸出「00:00:01.200」。 SimpleDateFormat 類別允許自訂輸出格式字串以滿足您的特定要求。例如,「hh:mm:ss a」會將時間格式設定為「12:00:00 PM」。
以上是如何在 Java 中將時間戳記(以毫秒為單位)轉換為人類可讀的時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!