4

因此,当我尝试为 JavaFX 编写教程并正在研究 FXML 示例时。但是,每当我在 .fxml 文件中向 GridPane 添加一些内容时,程序就会崩溃。如果没有其他内容,它会打开一个普通的 GridPane。

FXML 文件的代码:

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

<?import java.net.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>

<GridPane fx:controller="fxmlexample.FXMLExampleController" 
    xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10">
<padding><Insets top="25" right="25" bottom="10" left="25"/></padding>
<Text text="Welcome" 
        GridPane.columnIndex="0" GridPane.rowIndex="0"
        GridPane.columnSpan="2"/>

    <Label text="User Name:"
        GridPane.columnIndex="0" GridPane.rowIndex="1"/>

    <TextField 
        GridPane.columnIndex="1" GridPane.rowIndex="1"/>

    <Label text="Password:"
        GridPane.columnIndex="0" GridPane.rowIndex="2"/>

    <PasswordField fx:id="passwordField" 
        GridPane.columnIndex="1" GridPane.rowIndex="2"/>
</GridPane>

主类代码:

package fxmlexample;

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

public class FXMLExample extends Application {

public static void main(String[] args) {
    Application.launch(FXMLExample.class, args);
}

@Override
public void start(Stage stage) throws Exception {
    Parent root = FXMLLoader.load(getClass().getResource("fxml_example.fxml"));

    Scene scene = new Scene(root, 300, 275);

    stage.setTitle("FXML Welcome");
    stage.setScene(scene);
    stage.show();
}

}

究竟是什么导致它崩溃?

4

2 回答 2

0

我正在尝试同样的事情并将问题追踪到“Insets”条目。在我的输出顶部有一个“Insets is not a valid type”错误(在我理顺了我的命名之后)。这可能取决于所使用的 NetBeans 版本。(我正在使用 7.2.1 但希望今天下午升级到 7.4。)

为了解决这个问题,我简单地注释掉了“Insets”条目:

于 2014-02-17T18:53:38.783 回答
0
Parent root = FXMLLoader.load(getClass().getResource("fxml_example.fxml"));

上面提到的行你给出了错误的 FXML 文件名(fxml_example.fxml)。

<GridPane fx:controller="fxmlexample.FXMLExampleController"

在这里,我可以看到这fxmlexample是您的 FXML 文件的名称。只需通过删除来修复它_,您的代码就可以了。

于 2016-05-03T05:38:13.163 回答