在 Java 中,将表示为长值(自 Epoch 以来经过的毫秒数)的时间戳转换为格式化时间字符串h:m:s:ms 格式是一个简单的过程。
要实现此目的,您可以利用 Date 和 SimpleDateFormat 类。 Date 类表示特定的时刻,而 SimpleDateFormat 允许您根据给定模式设置该时间的格式。
以下是解决您的问题的分步解决方案:
// Create a Date object from the timestamp Date date = new Date(logEvent.timeStamp); // Create a SimpleDateFormat object with the desired time format DateFormat formatter = new SimpleDateFormat("HH:mm:ss.SSS"); // Set the SimpleDateFormat time zone to UTC for correct time formatting formatter.setTimeZone(TimeZone.getTimeZone("UTC")); // Format the Date object and convert it to a string String dateFormatted = formatter.format(date); // Display the formatted time string System.out.println(dateFormatted); // Prints time in h:m:s:ms format
此方法可确保将时间戳准确转换为所需的格式化时间字符串。
以上是如何在 Java 中将毫秒时间戳转换为 HH:mm:ss:SSS 格式?的详细内容。更多信息请关注PHP中文网其他相关文章!