java timestamp 转String
时间: 2023-10-13 18:23:40 浏览: 167
在Java中String和Date、Timestamp之间的转换
5星 · 资源好评率100%
可以使用 `java.text.SimpleDateFormat` 类来将 `java.sql.Timestamp` 转换为字符串。以下是一个示例:
```java
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
public class TimestampToStringExample {
public static void main(String[] args) {
Timestamp timestamp = new Timestamp(System.currentTimeMillis());
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String strTimestamp = sdf.format(timestamp);
System.out.println(strTimestamp);
}
}
```
此代码将当前时间戳转换为字符串格式,格式为 `yyyy-MM-dd HH:mm:ss`。您可以根据需要更改日期格式。
阅读全文