我有一个javaFx程序(A)进入一个jar,我正在使用以下命令单击其他JFrames程序(B)中的按钮运行:
String rValue = A.main(arg);
A返回一些在rValue中捕获的值 第一次点击按钮它正常工作,但第二次发生此事件时显示错误:
错误代码
Exception in thread "main" java.lang.IllegalStateException: Application launch must not be called more than once
at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:162)
at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:143)
at javafx.application.Application.launch(Application.java:252)
at a.A.main(A.java:64)
at B.main(B.java:80)
我需要一些帮助。 提前谢谢。