gpt4 book ai didi

一行中来自 Scanner 的 Java 输入日期

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:25:11 25 4
gpt4 key购买 nike

我正在尝试从用户那里读取日期以传递给 GregorianCalendar 变量。目前我有一个尴尬的设置,它逐行读取。您能提供一种在一行中收集输入的解决方案吗?我找到了 SimpleDateFormat 类,但找不到适合此特定用途的类。

    Scanner time = new Scanner(System.in)

System.out.println("Type year: ");int y =time.nextInt();
System.out.println("Type month: ");int m =time.nextInt();
System.out.println("Type day: ");int d = time.nextInt();
System.out.println("Type hour: ");int h = time.nextInt();
System.out.println("Type minute: ");int mm = time.nextInt();

GregorianCalendar data = new GregorianCalendar(y,m,d,h,mm);

最佳答案

我建议您读入一行具有特定格式的文本,然后使用 DateFormat 对其进行解析。例如:

DateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm",
Locale.US);
System.out.println("Enter date and time in the format yyyy-MM-ddTHH:mm");
System.out.println("For example, it is now " + format.format(new Date()));
Date date = null;
while (date == null) {
String line = scanner.nextLine();
try {
date = format.parse(line);
} catch (ParseException e) {
System.out.println("Sorry, that's not valid. Please try again.");
}
}

如果可以,请使用 Java 8 java.time 类,或 Joda Time - 具有相同的基本思想,但使用这些 API 中的类。两者都比使用 DateCalendar 好得多。

关于一行中来自 Scanner 的 Java 输入日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28385099/

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