我正在使用桌面应用程序,它一次又一次地执行相同的过程...换句话说,它一整天都在一次又一次地运行。
我使用scheduleWithFixedDelay
完成此任务,如下所示。
private final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);
final ScheduledFuture<?> threadHandle = scheduler.scheduleWithFixedDelay(mainThread, 0, 5, TimeUnit.SECONDS);
每当有人点击关闭按钮时,我都希望仅在微粒轮的任务完成或理想的情况下关闭程序。
我使用2个boolean
变量(一个用于检查用户是否单击了关闭按钮,另一个用于检查进程是否正在运行)。
但这种方法效率不高。
是否有任何有效的方法可以完成此任务,例如使用内置函数。
提前致谢:)
答案 0 :(得分:0)
在退出应用程序之前,请执行scheduler.shutdown()
,然后执行scheduler.awaitTermination(...timeout...)
(read more)。以后的方法可以执行您想要的操作:如果没有任何任务正在运行,它将立即返回,如果任务正在进行中,它将阻塞,直到任务完成(或超时到期)。
答案 1 :(得分:0)
非常感谢 Aivean 的支持..它完美无缺:) 我相信这是你的建议。
WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE);
int ipAddress = wifiManager.getConnectionInfo().getIpAddress();
final String formatedIpAddress = String.format(Locale.US, "%d.%d.%d.%d", (ipAddress & 0xff),
(ipAddress >> 8 & 0xff), (ipAddress >> 16 & 0xff), (ipAddress >> 24 & 0xff));