java 14位数字转换yyyy-MM-dd HH:mm:ss
时间: 2023-06-24 08:06:23 浏览: 109
java数字转换位金额大写输出
你可以使用`SimpleDateFormat`类将14位数字转换为`yyyy-MM-dd HH:mm:ss`格式的日期时间字符串。
以下是示例代码:
```java
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
// 14位数字
long timestamp = 20210919123456L;
// 日期格式化器
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try {
// 将14位数字转换为日期对象
Date date = formatter.parse(String.valueOf(timestamp));
// 将日期对象转换为字符串
String dateString = formatter.format(date);
System.out.println(dateString); // 输出结果:2021-09-19 12:34:56
} catch (ParseException e) {
e.printStackTrace();
}
}
}
```
在上面的代码中,我们首先将14位数字转换为`String`类型,并使用`SimpleDateFormat`类的`parse()`方法将其转换为`Date`对象。然后,我们将日期对象再次使用`SimpleDateFormat`类的`format()`方法转换为字符串。最终,我们将输出`2021-09-19 12:34:56`作为结果。
阅读全文