怎么设置Timestamp日期·格式
时间: 2023-04-09 22:03:42 浏览: 104
pandas实现将日期转换成timestamp
你可以使用Java中的SimpleDateFormat类来设置Timestamp日期格式。例如,以下代码将日期格式设置为"yyyy-MM-dd HH:mm:ss.SSS":
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
Timestamp timestamp = new Timestamp(System.currentTimeMillis());
String formattedDate = sdf.format(timestamp);
System.out.println("Formatted date: " + formattedDate);
这将输出当前时间的格式化日期,例如:"Formatted date: 2022-01-01 12:34:56.789"。
阅读全文