【问题标题】:JavaFX - DatePicker always returns nullJavaFX - DatePicker 总是返回 null
【发布时间】:2015-11-11 18:37:45
【问题描述】:

DatePicker 在更改日期后不更新。

我一直在寻找答案,我发现了这个话题: JavaFX datepicker not updating value ,但它不起作用。

我的 DatePicker 监听器:

public void datePickerListener() {
    this.datePicker = new DatePicker();
    this.datePicker.setShowWeekNumbers(false);
    this.datePicker.setOnAction(event -> {
        LocalDate date = this.datePicker.getValue();
        System.out.println("Selected date: " + date);
    });
}

此外,我尝试在没有侦听器的情况下获取数据,例如:

public void searchAvailableAppointments() {
    LocalDate date;
    String date2;
    date = this.datePicker.getValue();
    date2 = this.datePicker.getEditor().getText();

    System.out.println(date);
    System.out.println(date2);
}

也许有人遇到过类似问题并找到了解决方法?

EDIT1:

我创建了一个简单的项目来检查 DatePicker 的行为:

控制器类:

package sample;

import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.DatePicker;

import java.net.URL;
import java.time.LocalDate;
import java.util.ResourceBundle;

public class Controller implements Initializable {

    @FXML
    DatePicker datePicker;

    @Override
    public void initialize(URL location, ResourceBundle resources) {
        this.datePicker = new DatePicker();
    }

    public void pressButton() {
        LocalDate date;
        date = datePicker.getValue();
        System.out.println(date);
    }
}

FXML 文件:

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.DatePicker?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="142.0" prefWidth="504.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller">
<children>
   <DatePicker fx:id="datePicker" layoutX="65.0" layoutY="58.0" prefHeight="25.0" prefWidth="295.0" />
      <Button layoutX="387.0" layoutY="59.0" mnemonicParsing="false" onAction="#pressButton" prefHeight="25.0" prefWidth="80.0" text="Print result" />
</children>
</AnchorPane>

主类:

package sample;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {
    @Override
    public void start(Stage primaryStage) throws Exception{
        Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
        primaryStage.setTitle("Hello World");
        primaryStage.setScene(new Scene(root));
        primaryStage.show();
    }
    public static void main(String[] args) {
        launch(args);
    }
}

但我仍然不知道如何使它工作。

【问题讨论】:

    标签: java javafx datepicker javafx-8


    【解决方案1】:

    您不应重新初始化 initialize() 中的 DatePicker。当 FXMLLoader 加载 fxml 时,它会实例化所有字段并将它们注入到带有 @FXML 注释的引用中。

    如果您重新初始化该字段,对视图上呈现的原始对象的引用将丢失,并且您正在使用对新创建对象的引用,因此从该对象获取的值将始终为null .

    @Override
    public void initialize(URL location, ResourceBundle resources) {
        // this.datePicker = new DatePicker(); <-- Should not exist
    }
    

    【讨论】:

    • 你完全正确!没想到问题的解决这么简单,非常感谢! :)
    猜你喜欢
    • 1970-01-01
    • 2014-03-04
    • 2016-11-02
    • 2014-05-06
    • 2012-06-05
    • 2014-05-30
    • 2014-02-23
    • 2017-10-12
    • 2013-08-16
    相关资源
    最近更新 更多