java.lang.NullPointerException 在 Javafx 的另一个 FXML 中处理 FXML

java.lang.NullPointerException in handling with FXML inside another FXML in Javafx

我一直在想办法在另一个 FXML 文件中处理一个 FXML 文件。但我有一个例外。 :( 这是我的内部 FXML(视图包中的NewInside.fxml):

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

<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>


<AnchorPane prefHeight="305.0" prefWidth="360.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8" fx:controller="controller.NewInsideController">
   <children>
      <Button fx:id="newBtn" layoutX="30.0" layoutY="202.0" mnemonicParsing="false" onAction="#btnClick" text="Button" />
      <TextField fx:id="newTxt" layoutX="30.0" layoutY="134.0" prefHeight="25.0" prefWidth="280.0" />
      <Label fx:id="newLbl" layoutX="30.0" layoutY="62.0" prefHeight="17.0" prefWidth="280.0" />
   </children>
</AnchorPane>

这是它的控制器(控制器包中的NewInsideController.java):

package controller;

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

import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;

public class NewInsideController implements Initializable{

    @FXML public static Label newLbl;
    @FXML public static TextField newTxt;
    @FXML public static Button newBtn;

    @Override
    public void initialize(URL location, ResourceBundle resources) {

    }

    @FXML
    private void btnClick(ActionEvent e){
        System.out.println("Button is clicked!");
        newLbl.setText(newTxt.getText());
    }

}

这是外部 FXML(New.fxml 在视图包中):

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

<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>


<AnchorPane prefHeight="380.0" prefWidth="529.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8" fx:controller="controller.NewController">
   <children>
      <fx:include source="NewInside.fxml" />
   </children>
</AnchorPane>

这是它的控制器(控制器包中的NewController.java):

package controller;

import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.Initializable;

public class NewController implements Initializable {

    /*@FXML private Label newLbl;
    @FXML private Button newBtn;
    @FXML private TextField newTxt;
    */

    @Override
    public void initialize(URL location, ResourceBundle resources) {

    }

    /*@FXML
    public void btnClick(ActionEvent e){
        newLbl.setText(newTxt.getText());
    }*/

}

最后,这是应用程序包中的Main.java:

package application;

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


public class Main extends Application {
    @Override
    public void start(Stage primaryStage) {
        try {
            Parent root = FXMLLoader.load(getClass().getResource("/view/New.fxml"));
            Scene scene = new Scene(root);
            scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
            primaryStage.setScene(scene);
            primaryStage.show();
        } catch(Exception e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        launch(args);
    }
}

当我点击按钮时,它给了我很长的异常: "Exception in thread "JavaFX 应用程序线程”java.lang.RuntimeException:java.lang.reflect.InvocationTargetException... ..... 原因:java.lang.NullPointerException 在 controller.NewInsideController.btnClick(NewInsideController.java:27) ... 57 更多

请帮帮我! :(

正如@Inge 所建议的那样,使用静态字段并不是正确的方法。另外,您应该使用 private 而不是 public。如果您需要公开您的控件,请使用它们的属性。

您可以在此处阅读原因:

  • 你不应该使用 static field here
  • ...不要使用 static fields

只需在 NewInsideController 中更改此设置:

@FXML private Label newLbl;
@FXML private TextField newTxt;
@FXML private Button newBtn;

编辑

如果您想从其他 类 访问您的控件,而不是添加 getters/setters 直接公开控件,最好只公开它们的属性。

例如,要访问这些控件的文本,您可以添加:

public StringProperty newLblText() { 
    return newLbl.textProperty();
}
public StringProperty newTxtText() { 
    return newTxt.textProperty();
}
public StringProperty newBtnText() { 
    return newBtn.textProperty();
}

这将允许您绑定(或监听更改),getting/setting 来自控制器外部的任何文本 属性。

要从 NewController 获取 NewInsideController 的有效实例,请遵循此 link。先修改New.fxml:

<fx:include fx:id="newInside" source="NewInside.fxml" />

现在您可以获得一个实例,并添加一些具有这些属性的侦听器:

public class NewController implements Initializable {

    @FXML
    private Parent newInside;
    @FXML
    private NewInsideController newInsideController;

    @Override
    public void initialize(URL url, ResourceBundle rb) {

        newInsideController.newBtnText().addListener(
            (obs,s,s1)->System.out.println("nweBtn Text;" +s1));
        if(newInsideController.newLblText().get().isEmpty()){
            newInsideController.newLblText().set("Text for the textfield");
        }
        newInsideController.newTxtText().addListener(
           (obs,s,s1)->System.out.println("s1 "+s1));
    }    
}