我对JavaFX
很新,我在使用FXML
中的自定义类时遇到问题。尝试加载main.fxml
时,控制台一直给我这个例外:
... 1 more
Caused by: java.lang.ClassNotFoundException: sample.View$BoardPane
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
...
我在BoardPane
包中创建了FlowPane
类作为sample.View
的子类,并在我的FXML中将其引用为以下内容:
<?import sample.View.BoardPane?>
...
<TitledPane expanded="true" collapsible="false" text="BoardPane" fx:id="centerTitledPane">
<BoardPane fx:id="mechoBoardPane"/>
</TitledPane>
...
,项目结构如下:
有人可以帮我这个吗?我一直在寻找一些时间,但没有找到任何解释。
答案 0 :(得分:3)
包名“View”必须为小写。在您的项目中,以及在fxml中。
有关详细信息,请参阅FXMLLoader.class的方法loadType:
private Class<?> loadType(String name, boolean cache) throws ClassNotFoundException {
int i = name.indexOf('.');
int n = name.length();
while (i != -1
&& i < n
&& Character.isLowerCase(name.charAt(i + 1))) { // <<<<<<<<<
i = name.indexOf('.', i + 1);
}
if (i == -1 || i == n) {
throw new ClassNotFoundException();
}
String packageName = name.substring(0, i);
String className = name.substring(i + 1);
Class<?> type = loadTypeForPackage(packageName, className);
if (cache) {
classes.put(className, type);
}
return type;
}