これは私の頭を壁に叩いている!!誰かが狙いを定めて私を向けることができます。私は何かを完全に愚かでダブしていると確信しています。私は検索して検索しましたが、なぜこれが動作していないのかわからないようです! (IntelliJ IDE 15.xでScenebuilderでJDK8.xを使用する)。私はGUI上にデータを表示しようとしていますが、このデータを他のクラス/メソッドからプログラム的に送るためにアクセスしたいと思っています....私の大きなプロジェクトで作業する前に作業をしようとしている単純なコンセプトです:メインからコントローラクラスのJavaFXアクセス機能
ScenebuilderコントローラクラスでFXMLで定義されてMain Class:
package sample;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
Controller myController = new Controller();
@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, 345, 200));
primaryStage.show();
myController.pushBtn();
}
public static void main(String[] args) {
launch(args);
}
}
私のシンプルなGUI、:IDとイベントハンドラタグと一緒に
package sample;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.application.Platform;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.TextField;
public class Controller {
@FXML // ResourceBundle that was given to the FXMLLoader
private ResourceBundle resources;
@FXML // URL location of the FXML file that was given to the FXMLLoader
private URL location;
@FXML // fx:id="txtBox"
private TextField txtBox; // Value injected by FXMLLoader
@FXML // fx:id="myButton"
private Button myButton; // Value injected by FXMLLoader
@FXML // This method is called by the FXMLLoader when initialization is complete
void initialize() {
assert txtBox != null : "fx:id=\"txtBox\" was not injected: check your FXML file 'sample.fxml'.";
assert myButton != null : "fx:id=\"myButton\" was not injected: check our FXML file 'sample.fxml'.";
}
@FXML
private void pressBtn(ActionEvent event){
txtBox.setText("Btn was pushed...");
}
@FXML
public void pushBtn(){
txtBox.appendText("Sample from Main");
}
}
..and Finaly私の非常にシンプルなFXMLファイル:
<GridPane alignment="center" hgap="10" vgap="10" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.65" fx:controller="sample.Controller">
<columnConstraints>
<ColumnConstraints />
</columnConstraints>
<rowConstraints>
<RowConstraints />
</rowConstraints>
<children>
<Pane prefHeight="200.0" prefWidth="345.0" style="-fx-background-color: GRAY;">
<children>
<TextField fx:id="txtBox" layoutX="63.0" layoutY="28.0" prefHeight="53.0" prefWidth="224.0" style="-fx-background-color: LIGHTGRAY;" />
<Button fx:id="myButton" layoutX="140.0" layoutY="100.0" mnemonicParsing="false" onAction="#pressBtn" text="Button" />
</children>
</Pane>
</children>
</GridPane>
私がやろうとしているのは、コントローラクラスでpublic宣言されている関数を呼び出すことです。その関数は、txtBoxにテキストを配置します。これは、表示できるようにFXMLで定義されています。 mainにそのコントローラクラスのインスタンスを作成し、そのインスタンスを使用してこのメソッドにアクセスします。私がここで読んで、探しているのは、これが正しいことだと指摘しています。しかし、これは決してうまくいかず、そのようなエラーが発生します。
Exception in Application start method
Exception in thread "main" java.lang.RuntimeException: Exception in Application start method
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$155(LauncherImp l.java:182)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.NullPointerException
at sample.Controller.pushBtn(Controller.java:43)
at sample.Main.start(Main.java:20)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$162(LauncherIm pl.java:863)
at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$175(PlatformImpl.java:326)
at com.sun.javafx.application.PlatformImpl.lambda$null$173(PlatformImpl.java:295)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl.lambda$runLater$174(PlatformImpl.java:294)
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.lambda$null$148(WinApplication.java:191)
... 1 more `
私は何が欠けていますか?これを呼び出す別の方法はありますか?私は何かを初期化していませんか?本当にありがとうございます!
'PushBtn'コールであなたの' txtBox'がnull表示されます。おそらく初期化は、手動で呼び出すときにはまだ完了していません。 –
* "メインのコントローラークラスのインスタンスを作成する" *。まあ、それは問題です。そのインスタンスはコントローラではありません。 –