摘要:
Swing中的SwingWorker主要是用来执行比较耗时的任务。Java doc文档中中包含了一些简单的例子。An abstract class to perform lengthy GUI-interaction tasks in a background thread. Several bac... 阅读全文
摘要:
看到过两种方式启动主窗体的代码:方式1: java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new MainJFrame().setVisible... 阅读全文