testFX.java:
public class testFX extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
try{
FXMLLoader loader = new FXMLLoader();
loader.setLocation(getClass().getResource("/testFX/view/test.fxml"));
System.out.println("after set location");
//PROBLEM
AnchorPane root = (AnchorPane)loader.load();
System.out.println("Does not happen");
testFXController listController = loader.getController();
listController.start();
Scene scene = new Scene(root, 200, 300);
scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
primaryStage.setScene(scene);
primaryStage.show();
}
catch (Exception ex){
System.out.println("Error");
}
}
public static void main(String[] args) {
launch(args);
}
}
testFXController.java:
package testFX.view;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.ListView;
public class testFXController {
@FXML ListView<String> listView;
private ObservableList<String> obsList;
public void start() {
// create an ObservableList
// from an ArrayList
obsList = FXCollections.observableArrayList("Giants", "Patriots", "Jaguars");
listView.setItems(obsList);
}
}
test.fxml:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.control.ListView?>
<AnchorPane xmlns="http://javafx.com/javafx/8.0.40" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="view.testFXController">
<ListView fx:id="listView"
AnchorPane.topAnchor="10"
AnchorPane.leftAnchor="10"
AnchorPane.rightAnchor="10"
AnchorPane.bottomAnchor="10" />
</AnchorPane>
当我运行testFX.java时,系统会打印:
after set location
Error
这是教授的代码,我似乎无法让它运行。我意识到主要问题在于代码行AnchorPane root = (AnchorPane)loader.load();
,但我不知道如何解决这个问题,有人可以帮忙吗?
答案 0 :(得分:1)
值fx:controller
属性很可能是错误的(除非您的控制器类与发布的控制器类不同)
您要使用的控制器:testFX.view.testFXController
fxml中的属性值:view.testFXController
!= testFX.view.testFXController
假设没有其他错误无法使用问题中的信息重现,修复属性值应该有效。
答案 1 :(得分:0)
fxml文件中的fx:controller
属性是罪魁祸首。
fx:controller="application.Controller"
为我工作。
因此,fx:controller="testFX.view.testFXController"
应该为您工作。