gpt4 book ai didi

java - 从字符串 "yyyy-MM-dd HH:mm"中提取日期和时间

转载 作者:行者123 更新时间:2023-12-01 17:23:17 25 4
gpt4 key购买 nike

存在格式为“yyyy-MM-dd HH:mm”的字符串。需要将日期“提取”到 var1 中,将时间“提取”到 var2 中。目前我只能将字符串格式化为日期。

private static Date toDate(String dateString) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm");
Date date = null;
try {
date = dateFormat.parse(dateString);
} catch (ParseException e) {
e.printStackTrace();
}
return date;
}

最佳答案

使用另一个SimpleDateFormat将结果日期格式化为所需的日期和时间Strings

Date date = toDate(dateString);
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
String dateString = dateFormat.format(date);
dateFormat.applyPattern("HH:mm");
String timeString = dateFormat.format(date);

关于java - 从字符串 "yyyy-MM-dd HH:mm"中提取日期和时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16982638/

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