使用长时间运行任务的结果重复更新 JLabel
问题:
一个 Java 程序尝试使用长时间运行的任务(ping 服务器)的结果持续更新 JLabel。虽然最初的实现只执行一次任务,但尝试创建重复任务却失败了。
解决方案:
为了解决此问题,该程序使用了两个技术:
代码片段:
以下代码结合了这些技术来实现所需的行为:
<code class="java">import java.awt.event.*; import javax.swing.*; import java.net.Socket; public class LabelUpdateUsingTimer { static String hostnameOrIP = "stackoverflow.com"; int delay = 5000; JLabel label = new JLabel("0000"); LabelUpdateUsingTimer() { label.setFont(label.getFont().deriveFont(120f)); ActionListener timerListener = new ActionListener() { @Override public void actionPerformed(ActionEvent e) { new PingWorker().execute(); } }; Timer timer = new Timer(delay, timerListener); timer.start(); JOptionPane.showMessageDialog( null, label, hostnameOrIP, JOptionPane.INFORMATION_MESSAGE); timer.stop(); } class PingWorker extends SwingWorker { int time; @Override protected Object doInBackground() throws Exception { time = pingTime(); return new Integer(time); } @Override protected void done() { label.setText("" + time); } }; public static int pingTime() { Socket socket = null; long start = System.currentTimeMillis(); try { socket = new Socket(hostnameOrIP, 80); } catch (Exception weTried) { } finally { if (socket != null) { try { socket.close(); } catch (Exception weTried) {} } } long end = System.currentTimeMillis(); return (int) (end - start); } public static void main(String[] args) { Runnable r = new Runnable() { @Override public void run() { new LabelUpdateUsingTimer(); } }; SwingUtilities.invokeLater(r); } }</code>
说明:
此实现可确保使用最新的 ping 时间重复更新 JLabel,而不影响 GUI 的响应能力。
以上是如何使用长时间运行的任务结果持续更新 JLabel?的详细内容。更多信息请关注PHP中文网其他相关文章!