JAVA将2023年04月17日如何转为2023-04-17
时间: 2023-06-06 11:09:10 浏览: 136
eclipse-java-2023-09-R-linux-gtk-x86-64.tar.gz
5星 · 资源好评率100%
可以使用Java中的日期格式化方法将2023年04月17日转换为2023-04-17。具体方法应该是:
```
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
String dateStr = "2023年04月17日";
SimpleDateFormat sourceFormat = new SimpleDateFormat("yyyy年MM月dd日");
SimpleDateFormat targetFormat = new SimpleDateFormat("yyyy-MM-dd");
try {
Date date = sourceFormat.parse(dateStr);
System.out.println(targetFormat.format(date));
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
其中,`sourceFormat`指定源日期的格式为“yyyy年MM月dd日”,`targetFormat`指定目标日期的格式为“yyyy-MM-dd”。`parse`方法将字符串转换为日期类型,`format`方法将日期类型格式化为指定的字符串格式。
阅读全文