Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何通过单击小程序中的按钮(JButton)重新初始化完整的 Java 小程序?
JButton
我希望小程序的行为就像它第一次的行为一样。我在我的小程序中获得了扫描仪,但我不知道释放它的功能。而销毁和重新启动小程序会自动执行此操作。有什么方法可以让我看到这个 Java 小程序使用什么函数来释放那个扫描器资源?所以我可以用同样的方式调用那个方法。
通常这个调用序列应该可以解决问题:
stop(); destroy(); init(); start();