java实现2023-06-06转化为20230606
时间: 2023-09-08 14:15:01 浏览: 158
grammerAny_Java实现-SNL语法分析器_formhxg_
5星 · 资源好评率100%
可以使用Java中的日期格式化工具SimpleDateFormat来实现日期的转换。具体实现如下:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateFormatExample {
public static void main(String[] args) {
String dateString = "2023-06-06";
SimpleDateFormat inputDateFormat = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat outputDateFormat = new SimpleDateFormat("yyyyMMdd");
try {
Date date = inputDateFormat.parse(dateString);
String outputDateString = outputDateFormat.format(date);
System.out.println(outputDateString);
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
运行以上代码会输出:20230606。
阅读全文