如何在Java syso输出中添加时间戳

avatar
作者
猴君
阅读量:0

要在Java的System.out.println()输出中添加时间戳,您可以使用java.time包中的LocalDateTime类和DateTimeFormatter来获取当前时间并格式化输出

import java.time.LocalDateTime; import java.time.format.DateTimeFormatter;  public class Main {     public static void main(String[] args) {         // 获取当前时间         LocalDateTime now = LocalDateTime.now();          // 设置时间格式         DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");          // 格式化时间         String formattedTime = now.format(formatter);          // 在输出中添加时间戳         System.out.println(formattedTime + ": Hello, World!");     } } 

这将在控制台上输出类似以下内容:

2021-10-18 15:37:42: Hello, World! 

您可以根据需要自定义DateTimeFormatter的模式。有关更多详细信息,请参阅官方文档

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!