I've added DatePicker with the help of Scene Builder into my fxml page. How can I customize its date and also set current date at initial?
VBox vBox = (VBox) loader.load();
rootLayout.setRight(vBox);
DatePicker checkInDatePicker = new DatePicker(LocalDate.of(1998, 10, 8));
checkInDatePicker.setValue(LocalDate.now());