package chuankou; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class TimestampUtil { /** * 获取年月日时分秒毫秒的时间戳 * @return 时间戳字符串 */ public static String getTimestamp() { LocalDateTime now = LocalDateTime.now(); DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS"); return now.format(formatter); } }