@FXML
private DatePicker date;
//In the initialize method you can use the following code:
@Override
public void initialize(URL location, ResourceBundle resources) {
date.setOnShowing(e -> Locale.setDefault(Locale.Category.FORMAT, Locale.UK));
//...
}