使用長時間運行任務的結果更新JLabel
問題:
問題:您的目標建立一個程序,連續ping 伺服器並更新JLabel 中的ping 結果。
初始方法:您的第一次嘗試涉及在formWindowOpened() 事件。雖然這有效,但它只執行了一次任務。
第二種方法:隨後的努力在 formWindowOpened() 中引入了無限循環。然而,這種方法甚至無法執行一次 setPing() 方法。
使用Swing Timer 和SwingWorker 的解決方案:<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>
以上是如何使用長時間運行任務的結果持續更新 JLabel?的詳細內容。更多資訊請關注PHP中文網其他相關文章!