我正在完成作业,我的目标是创建一个类,用于打印给定日期的星期几。当提示输入时,如果用户什么都不输入,则程序停止。否则,如果用户输入日期,则程序提供星期几,然后继续重新提示用户。用户输入的日期将采用m d y的格式,例如,2017年1月10日的2017年1月10日。
我到目前为止所做的一切都是我需要的,除了它使用当前的日,月和年而不是用户输入的日,月和年。
import java.util.Calendar;
import java.util.Scanner;
public class FindDayOfWeek {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.println("Repeatedly enter a date (m d y) to get the day of week. Terminate input with a blank line.");
String date = s.nextLine();
while (true) {
if (date.isEmpty()) {
System.exit(0);
}
else {
Calendar c = Calendar.getInstance();
String[] days = new String[] {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
System.out.println("Day of week is " + days[c.get(Calendar.DAY_OF_WEEK) - 1]);
System.out.println("Repeatedly enter a date (m d y) to get the day of week. Terminate input with a blank line.");
date = s.nextLine();
}
}
}
}
我知道需要替换的是第二个到最后一个代码块,表示c.get(Calendar.DAY_OF_WEEK),但是我不知道我可以用它来替换它以获取用户输入的日期。
我知道还有其他软件包可以解决同样的问题,但是,无论我喜欢与否,我都需要使用Calendar类。
答案 0 :(得分:3)
shash678’s answer也是正确的,同样也在推荐java.time
对您需要使用的已过时的Calendar
类。我只是想在此处添加一点:即使您需要使用Calendar
课程,但这并不一定意味着您还需要使用其过时的朋友Date
和SimpleDateFormat
。后者可能是其中最麻烦的,当然也应该避免。
DateTimeFormatter inputFormatter = DateTimeFormatter.ofPattern("M d u");
Scanner s = new Scanner(System.in);
System.out.println("Repeatedly enter a date (m d y) to get the day of week."
+ " Terminate input with a blank line.");
String date = s.nextLine();
LocalDate ld = LocalDate.parse(date, inputFormatter);
// the easy way to get day-of-week would be ld.getDayOfWeek(),
// but we are required to use Calendar
// (any ZoneId will do for atStartOfDay(), I just prefer to provide one)
Calendar c = GregorianCalendar.from(ld.atStartOfDay(ZoneOffset.UTC));
int numberOfDayOfWeek = c.get(Calendar.DAY_OF_WEEK);
// display
DayOfWeek dayOfWeek;
// Calendar’s dayOfWeek starts from 1 = Sunday;
// for DayOfWeek.of() we need to start from 1 = Monday
if (numberOfDayOfWeek == Calendar.SUNDAY) {
dayOfWeek = DayOfWeek.SUNDAY;
} else {
dayOfWeek = DayOfWeek.of(numberOfDayOfWeek - 1);
}
System.out.println("Day of week is "
+ dayOfWeek.getDisplayName(TextStyle.FULL_STANDALONE, Locale.US));
示例会话:
Repeatedly enter a date (m d y) to get the day of week. Terminate input with a blank line.
10 5 2017
Day of week is Thursday
我遗漏了重复,直到输入一个空行,因为你似乎已经处理了这个罚款。
虽然上述内容肯定不是您的教师所追求的,但在现实生活中,使用特定过时类的要求通常来自使用遗留API,该API需要和/或为您提供该旧类的实例。在这种情况下,我建议您尽量减少旧API的使用,并尽可能使用现代API。所以在代码中我只在最后一刻转换为Calendar
才能找到星期几。无论您从Date
转换为Calendar
还是从LocalDate
转换为Calendar
,都不会对代码的复杂性产生任何重大影响,因此您不妨自己做赞成使用现代LocalDate
。
我确实通过将int
从Calendar
转换回现代DayOfWeek
枚举来添加一些额外的复杂性,我用它来显示日期名称。如果你愿意,可以省略这部分。我把它包括在内只是为了证明有一种方法可以避免在从int
转换为日期名称时重新发明轮子。
答案 1 :(得分:2)
不要使用日历而是使用java.time包:
double U = ((double) x) / n;
使用示例:
import java.util.Scanner;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("MM/dd/yyyy");
LocalDate inputDate;
while(true){
System.out.print("Enter a date in the format of MM/dd/yyyy:");
String date = scanner.next();
try {
inputDate = LocalDate.parse(date, formatter);
break;
} catch (Exception e) {
System.err.println("ERROR: Please input the date in the correct format");
}
}
System.out.println("The day of week is " + inputDate.getDayOfWeek().name());
}
}
但是,如果您确实需要使用日历并希望使用类似于现有代码的内容,请尝试以下操作:
NB 请注意确保严格解析的行Enter a date in the format of MM/dd/yyyy: 92/23/2344
ERROR: Please input the date in the correct format
Enter a date in the format of MM/dd/yyyy: 11/26/2019
The day of week is TUESDAY
,以使输入必须与EXACT格式匹配。 < / p>
formatter.setLenient(false);
使用示例:
import java.util.Scanner;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.ParseException;
import java.util.Calendar;
class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
SimpleDateFormat formatter = new SimpleDateFormat("MM/dd/yyyy");
formatter.setLenient(false);
Date inputDate;
while(true){
System.out.print("Enter a date in the format of MM/dd/yyyy:");
String date = scanner.nextLine();
try {
inputDate = formatter.parse(date);
break;
} catch (Exception e) {
System.err.println("ERROR: Please input the date in the correct format");
}
}
Calendar c = Calendar.getInstance();
c.setTime(inputDate);
int dayOfWeek = c.get(Calendar.DAY_OF_WEEK);
String[] days = new String[] {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
System.out.println("The day of week is " + days[dayOfWeek - 1]);
}
}