我试图在java中添加2周的日期。
我目前使用以下代码,它正确地给了我今天的日期,但它在2周的日期给了我一个错误。我附上了错误的屏幕截图。关于解决这个问题的任何想法。
void Days() {
String today = LocalDate.now().toString();
System.out.println(today);
lbl_borrowdate.setText(today);
//add 2 week to the current date
LocalDate next2Week = today.plus(2, ChronoUnit.WEEKS);
System.out.println(next2Week);
lbl_duedate.setText(next2Week);
}