JavaFX using Gluon SceneBuilder InvocationTargetException

前端 未结 1 2015
情歌与酒
情歌与酒 2021-01-28 08:30

I was making an application for a buddy of mine and finished the design for the login screen and saved it in eclipse. This is a .fxml file by the way, and it throws an Invocatio

1条回答
  •  抹茶落季
    2021-01-28 08:53

    This is the actual error that's causing the crash.

    UnsupportedClassVersionError: com/jfoenix/controls/JFXButton has been compiled by a more recent version of the Java Runtime (class file version 53.0), this version of the Java Runtime only recognizes class file versions up to 52.0

    My guess is that you need to either update your JDK or download a version of JFoenix that was compiled for your version of the JDK.

    0 讨论(0)
提交回复
热议问题