gpt4 book ai didi

java - 格式化字符串的最快和最有效的方法

转载 作者:行者123 更新时间:2023-11-29 10:06:15 25 4
gpt4 key购买 nike

在 Java 中,将格式为“20110913”的字符串日期转换为“2011-09-13”的最快方法是什么。

最佳答案

使用java.text.DateFormat:

DateFormat inputFormat = new SimpleDateFormat("yyyyMMdd");
inputFormat.setLenient(false);
DateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");
Date inputDate = inputFormat.parse("20110913);
System.out.println(outputFormat.format(inputDate));

关于java - 格式化字符串的最快和最有效的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7356526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com