string时间戳转date
时间: 2023-10-05 12:05:10 浏览: 77
要将String类型的时间戳转换为Date,你可以使用DateFormat或DateTimeFormatter来实现。
方法一:使用DateFormat
你可以使用DateFormat及其子类SimpleDateFormat来进行格式化和解析日期。首先,你需要创建一个SimpleDateFormat对象,并指定你想要的日期格式,比如"yyyy-MM-dd HH:mm:ss"。然后,使用该对象的parse方法将String类型的时间戳转换为Date类型。以下是一个示例代码:
```
DateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = simpleDateFormat.parse("2018-06-16 10:00:00");```
其中,"2018-06-16 10:00:00"是你要转换的String类型的时间戳。
方法二:使用DateTimeFormatter(JDK8以上)
如果你使用的是JDK8及以上版本,你可以使用DateTimeFormatter来代替SimpleDateFormat。DateTimeFormatter是线程安全的。首先,你需要创建一个DateTimeFormatter对象,并指定你想要的日期格式,比如"yyyy-MM-dd HH:mm:ss"。然后,使用该对象的parse方法将String类型的时间戳转换为LocalDate类型。以下是一个示例代码:
```
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
LocalDate date = LocalDate.parse("2018-06-16 10:00:00", formatter);
```
其中,"2018-06-16 10:00:00"是你要转换的String类型的时间戳。
在以上两种方法中,你可以根据你的具体需求选择适合的方法来进行String类型时间戳的转换。同时,记得根据你所使用的类库的版本来选择合适的方法。
阅读全文