shee 将 yyyy-MM-dd HH:mm:ss 转换为yyyy-MM-dd
时间: 2024-01-19 17:02:15 浏览: 91
js时间类型转化(yyy-mm-dd hh:mm:ss)
将 yyyy-MM-dd HH:mm:ss 转换为 yyyy-MM-dd 的方法是通过截取字符串的方式,只保留年月日部分的内容。在Java中,可以使用SimpleDateFormat类来进行日期格式的转换。
以下是示例代码:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateConverter {
public static String convertDate(String dateTime) {
try {
SimpleDateFormat inputFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");
Date date = inputFormat.parse(dateTime);
return outputFormat.format(date);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
public static void main(String[] args) {
String dateTime = "2021-12-16 12:10:02";
String convertedDate = convertDate(dateTime);
System.out.println(convertedDate);
}
}
```
输出结果为:
```
2021-12-16
```
阅读全文