我正在运行一个FXML项目,我无法加载我的fxml文件,IntelliJ一直指示我的AnchorPane标记有问题,但这都是由场景生成器生成的。这个错误甚至出现在IntelliJ创建的fxml文件中。问题似乎是AnchorPane标记中的xmlns=”http://javafx.com/javafx/19“,至少编译器指向了这个位置。
我正在运行IntelliJ 2022和JDK 17.0.4.1以及使用Maven的JavaFX 19,并且我正在使用场景构建器19。
这是我的fxml代码
`
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.text.Font?>
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.LoginController">
<children>
<VBox prefHeight="400.0" prefWidth="600.0" />
<TextField id="Username" layoutX="115.0" layoutY="60.0" prefHeight="25.0" prefWidth="126.0" promptText="user@account.com" />
<Label layoutX="39.0" layoutY="64.0" prefHeight="17.0" prefWidth="63.0" text="Username" />
<Label layoutX="39.0" layoutY="116.0" text="Password" />
<TextField id="password" layoutX="115.0" layoutY="112.0" prefHeight="25.0" prefWidth="126.0" />
<Button id="login" layoutX="132.0" layoutY="210.0" mnemonicParsing="false" prefHeight="25.0" prefWidth="85.0" text="Login" />
<Label layoutX="39.0" layoutY="153.0" prefHeight="17.0" prefWidth="63.0" text="Location" />
<TextField id="Location" disable="true" layoutX="115.0" layoutY="149.0" prefHeight="25.0" prefWidth="126.0" promptText="Your location here" />
<Label id="ErrorMessage" alignment="CENTER" disable="true" layoutX="91.0" layoutY="183.0" prefHeight="17.0" prefWidth="187.0" text="Error Label" textAlignment="CENTER" textFill="#e10724">
<font>
<Font name="System Italic" size="12.0" />
</font>
</Label>
</children>
</AnchorPane>
这是我的java代码
package controllers;
import javafx.fxml.FXML;
import javafx.scene.control.*;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
import java.net.URL;
public class LoginController {
@FXML
private TextField Username;
//Buttons
@FXML
private TextField Password;
@FXML
private TextField Location;
@FXML
private Label ErrorMessage;
@FXML
private Button Login;
public void BeginStart(){
//Loader
try {
//debugging fxml path
URL uri = getClass().getResource("/views/login.fxml");
System.out.println(uri);
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/views/login.fxml"));
Scene scene = new Scene(fxmlLoader.load());
Stage stage = new Stage();
stage.setTitle("Hello!");
stage.setScene(scene);
stage.show();
/*Parent root = loader.load();
Stage stage = new Stage();
stage.setTitle("Scheduler Login");
stage.setScene(new Scene(root));
stage.show();*/
}catch(Exception e){
System.out.println("Failed to load login.fxml");
System.out.println("Exception: " + e.toString());
}
}
}
`
URI为非空,因此文件路径似乎没有问题。
以前,在删除Maven附带的javaFX文件并使用JavaFX19库的本地副本沿着正确的JVM参数之前,我遇到过“uri not registered”错误。
注意:我包含的图像来自我项目的以前版本。在资源下,“控制器”实际上应该是“视图”。
1条答案
按热度按时间a6b3iqyw1#
好的,问题出在
fx:controller
引用上。我的控制器类不在src/main/java/com.example.scheduler
内。将其移动到那里后,错误停止。