FXML:ClassNotFoundException

时间:2015-06-17 03:29:01

标签: javafx fxml fxmlloader

我对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>
...

,项目结构如下:

  • 资源
    • FXML
      • main.fxml
  • ...
  • SRC
    • ...
    • 样品
      • ...
      • 查看
        • BoardPane

有人可以帮我这个吗?我一直在寻找一些时间,但没有找到任何解释。

1 个答案:

答案 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;
}