When I am taking in a string variable from the scanner and parsing it to LocalDateTime in the format "yyyy-MM-dd HH:mm" the Scanner saved the input (i.e 2020-10-12 14:30) without the time. I believe the time is being saved into the next variable. However if I input 2020-10-1214:30 without the space, it saves the the variable correctly.
Below is my constructor where the object is being created and the string is being parsed into the localdatetime object.
public computerbooking(String strDAte, String ReturnDate,String computerType,String AssetTag,String StudentId ){
counter++;
this.bookingId = "Book"+counter;
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm");
bookingDateAndTime = bookingDateAndTime.parse(strDAte,formatter);
returnDateAndTime = returnDateAndTime.parse(ReturnDate,formatter);
this.computerType = computerType;
this.AssetTag = AssetTag;
this.StudentId = StudentId;
}
How do I instruct the scanner not to read the space between the date and time to save it correctly
LocalDateTime#parse
is astatic
function. UseLocalDateTime.parse(strDate, formatter)
instead ofbookingDateAndTime.parse(strDAte,formatter)
.Scanner#nextLine
to scan the full line of input. If you are usingScanner#next
, it will scan only up to2020-10-12
i.e. it will stop scanning as soon as it will come across a whitespace character after2020-10-12
.Demo:
A sample run: