创建新阶段时抛出ExceptionInInitializerError

时间:2016-05-06 11:25:34

标签: java swing exception

我正在使用swing Array ( [name] => 01.jpg [type] => image/jpeg [tmp_name] => /Applications/XAMPP/xamppfiles/temp/phpmbI84M [error] => 0 [size] => 748459 [image_width] => ) 作为我的应用程序的MainFrame。我有一个按钮,应该创建一个新窗口。但它会在初始化时崩溃,我不知道为什么。

JFrame

这是完整的异常错误

public class Dialog {
    private Stage window;

 public void display() {
    window = new Stage(); //This is line 45. This is place where it crash
    window.setMinWidth(350);
    window.setMinHeight(500);
    window.initModality(Modality.APPLICATION_MODAL);
    window.setTitle("Add new Stuff");
 //more code here
 }
}

任何想法为什么会崩溃?感谢

1 个答案:

答案 0 :(得分:1)

您可以在swing应用程序中包含JavaFx组件。我们为ERP应用程序执行了此操作,以显示带有JavaFx图表的仪表板。

enter image description here

初始化JavaFx相关代码应如下所示。

ProcessEngineConfiguration.createProcessEngineConfigurationFromResource("activiti.cfg.xml", "processEngineConfiguration").buildProcessEngine()

请参阅以下链接了解更多详情 https://docs.oracle.com/javase/8/javafx/interoperability-tutorial/swing-fx-interoperability.htm