JAVA将2023年04月17日如何转为2023-04-17
时间: 2023-06-06 20:09:10 浏览: 139
可以使用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`方法将日期类型格式化为指定的字符串格式。
相关问题
如果我想获取今天的YYYY-MM-DD日期呢
如果你想在Java中获取当前日期并按照"YYYY-MM-DD"的格式呈现出来,可以使用`java.time.LocalDate.now()`方法配合`LocalDate.format()`方法。这里是一个示例:
```java
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
// 获取当前日期
LocalDate currentDate = LocalDate.now();
// 定义日期格式化器
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
// 将日期格式化为指定格式的字符串
String formattedDate = currentDate.format(formatter);
System.out.println(formattedDate); // 输出:当前日期的"YYYY-MM-DD"格式
}
}
```
这段代码会输出今天的日期,例如:2023-04-17 (假设今天的日期是2023年4月17日)。
阅读全文