标签: java swing user-interface jbutton
我有一个在运行程序时自动运行的Main类文件,但我不希望这种情况发生。我希望首先出现GUI,然后单击一个按钮,我希望我的进程能够运行。这可能吗?
答案 0 :(得分:4)
您需要一个main方法才能启动GUI。但是,如果向ActionListener添加JButton,则可以设置在单击按钮时运行的代码。因此,您可以将当前在main方法中运行的代码移动到actionPerformed()的{{1}}方法,以实现您正在寻找的效果。
ActionListener
JButton
actionPerformed()
示例强>