java解析时间戳成为字符串
时间: 2023-08-05 15:19:48 浏览: 113
CommonsUtil 时间戳与字符串的转换
可以使用Java中的SimpleDateFormat类来解析时间戳成为字符串。具体代码如下:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class TimestampToString {
public static void main(String[] args) {
long timestamp = 1628899200000L; // 时间戳,单位毫秒
String format = "yyyy-MM-dd HH:mm:ss"; // 日期格式
SimpleDateFormat sdf = new SimpleDateFormat(format);
Date date = new Date(timestamp);
String str = sdf.format(date);
System.out.println(str);
}
}
```
其中,`timestamp`表示要解析的时间戳,`format`表示解析后的日期格式,`SimpleDateFormat`类用于格式化日期,`Date`类用于表示日期,`sdf.format(date)`方法用于将日期格式化为字符串。最终输出结果为:`2021-08-14 00:00:00`。
阅读全文