java时间字符串年月日时分秒怎么转换成年月日
时间: 2024-01-26 11:11:31 浏览: 294
java Date获取年月日时分秒的实现方法
可以使用Java中的SimpleDateFormat类来实现时间字符串的转换。具体步骤如下:
1. 创建SimpleDateFormat对象,指定需要转换的时间格式。
2. 使用SimpleDateFormat对象的parse()方法将时间字符串转换成Date对象。
3. 再次创建SimpleDateFormat对象,指定需要转换的时间格式。
4. 使用SimpleDateFormat对象的format()方法将Date对象转换成需要的时间字符串格式。
示例代码如下:
```
String timeStr = "2022-01-01 12:00:00";
SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = sdf1.parse(timeStr);
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy-MM-dd");
String result = sdf2.format(date);
```
阅读全文