我是Java新手,对于我想知道如何将字符串“2023-02-01”转换为“02012023”的用例,我在理解SimpleDateFormat在此用例中的正确用法时遇到了困难到目前为止我什么都没试过
ht4b089n1#
SimpleDateFormat现在是旧版,请尝试使用现代的java.time库:
SimpleDateFormat
java.time
String newStringDate = LocalDate.parse("2023-02-01") .format(DateTimeFormatter.ofPattern("MMdduuuu"));
1条答案
按热度按时间ht4b089n1#
SimpleDateFormat
现在是旧版,请尝试使用现代的java.time
库: