我是一个相当新的java程序员。我只有大约五周的经验,从零开始,我遇到问题,如果它们与控制器类不在同一个文件夹中,那么在Scene Builder中创建的javafx fxml文件可以正确加载。
我正在使用
Win7x64 running jre7x86 for this build
Eclipse Juno Service Release 1
Build id: 20120920-0800
jre version 1.7.0_07
javaFx version 2.2.1-b03
SceneBuilder version 1.0-b50
我的场景加载程序代码是
private static final String RESOURCE_PATH = "/resources/";
public static Stage buildStage(@SuppressWarnings("rawtypes") Class pClass,
String stageTitle, String resourceLocation)
{
Stage temp = new Stage();
Pane page = null;
try
{
page = FXMLLoader.load(pClass.getResource(RESOURCE_PATH + resourceLocation), null,
new JavaFXBuilderFactory());
}
catch (IOException e)
{
e.printStackTrace();
}
Scene scene = new Scene(page);
temp.setScene(scene);
temp.setTitle(stageTitle);
temp.setResizable(false);
return temp;
}
我知道项目目录是/workspace/projectName/
所以理论上如果给定相对路径,加载器应该能够找到文件吗?我得到的错误是
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:403)
at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:47)
at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:115)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.NullPointerException: Location is required.
at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2737)
at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2721)
at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2707)
at outofunit.system.StageFactory.buildStage(StageFactory.java:32)
at outofunit.desktop.ArcMaster.start(ArcMaster.java:28)
at com.sun.javafx.application.LauncherImpl$5.run(LauncherImpl.java:319)
at com.sun.javafx.application.PlatformImpl$5.run(PlatformImpl.java:206)
at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.access$100(WinApplication.java:29)
at com.sun.glass.ui.win.WinApplication$3$1.run(WinApplication.java:73)
... 1 more
我尝试过给加载程序一个绝对路径,但它只是不接受任何不直接在同一目录中的东西。我正在抓住稻草,试图解决这个问题。
我试图自己研究这个,但我没有得到太多,这里看似相似的几个答案似乎没有帮助,或者我太密集和/或没有经验去理解他们。它们是JavaFX 2.0 loading fxml files with event handlers fails和JavaFX 2.0 FXML resource loading error
我的一个伙伴能够通过使用此代码来克服这个问题
public void load(String pFileName, Stage pStage, String pTitle)
{
String fName = RESOURCE_PATH + pFileName;
try
{
String externalForm = getClass().getResource(fName)
.toExternalForm();
InputStream inStream = new URL(externalForm).openStream();
FXMLLoader loader = new FXMLLoader();
Pane p = (Pane)loader.load(inStream);
pStage.setTitle(pTitle);
pStage.setScene(new Scene(p));
mWindowControl = loader.getController();
mWindowControl.setUp(pStage);
pStage.show();
}
catch (Exception e)
{
e.printStackTrace();
}
}
最大的区别和我没有使用他的代码的原因是因为我的根窗格是一个Anchor窗格而不是普通窗格,他的方式URL instream强制一个普通的窗格。我没有使用普通窗格作为我的基础吗?我很乐意为你们提供任何帮助或意见。谢谢。
编辑:所以我一直在处理这个问题,错误信息已经改变。
我将代码更改为此
private final String RESOURCE_PATH = "resources/";
public void load(String pFileName, Stage pStage, String pTitle)
{
String fName = RESOURCE_PATH + pFileName;
Pane page = null;
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource(fName));
try
{
page = (Pane) fxmlLoader.load();
}
catch (IOException exception)
{
throw new RuntimeException(exception);
}
Scene scene = new Scene(page);
pStage.setScene(scene);
pStage.setTitle(pTitle);
mWindowControl = fxmlLoader.getController();
mWindowControl.setUp(pStage);
pStage.show();
}
但我现在得到的错误是
java.lang.IllegalStateException: Location is not set.
at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2021)
at outofunit.desktop.WindowLoader.load(WindowLoader.java:136)
at outofunit.desktop.WindowLoader.load(WindowLoader.java:62)
at outofunit.desktop.ArcMaster.start(ArcMaster.java:30)
at com.sun.javafx.application.LauncherImpl$5.run(LauncherImpl.java:319)
at com.sun.javafx.application.PlatformImpl$5.run(PlatformImpl.java:206)
at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.access$100(WinApplication.java:29)
at com.sun.glass.ui.win.WinApplication$3$1.run(WinApplication.java:73)
at java.lang.Thread.run(Unknown Source)
我不明白该位置是如何设置的
答案 0 :(得分:7)
这是一个路径问题,java需要知道从包层次结构中获取文件的位置。
因此,使用"/package1/resourcename.fxml"
应该从树的根目录中找到源。
您通常在开始时离开"/"
,因为您已经位于包树的顶部。
答案 1 :(得分:4)
两个例外情况都说“您尝试加载的(FXML)文件无法在您提供的位置找到”。您的文件名错误或其路径。提供包结构或至少包含load(String pFileName, Stage pStage, String pTitle)
方法的类文件路径以及要加载的FXML文件的路径。阅读getResource()
的javadoc API,并在网上查看有关它的示例代码。
答案 2 :(得分:-1)
我遇到了同样的问题。看着我的Jar(使用Winzip)并看到FXML文件不在那里。原来我的ANT脚本构建jar文件只包含我项目bin目录中的* .class文件。