如何用摇摆杀死一个线程?

时间:2013-03-06 10:12:38

标签: java multithreading swing

我用swing ui创建了一个java程序。首先,当我点击一个按钮而我无法点击另一个按钮时,我遇到了问题。我应该等到这个完成他的任务。所以我创建了一个全局变量线程,并在action事件中线程执行该方法。在下面的代码中提到

private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {

        t = new Thread() {
            private int postion;

            public void run() {
                InstallApk installapk = new InstallApk();
                int position = 0;
                String fileName = directory;
                String shellCommand = fileName;

                // for (int position =0; postion < 105;position +5) {
                jProgressBar1.setValue(InstallApk.value);
                try {
                    Thread.sleep(500);
                } catch (InterruptedException e) {
                }
                position += 5;
                // }

                jProgressBar1.setIndeterminate(true);

                installapk.execShellCmd(shellCommand);
                System.out.println("la valeur d'execution " + InstallApk.value);

                if (InstallApk.value > 3) {
                    jProgressBar1.setIndeterminate(false);
                }
            }

        };
        pid = t.getId();
        t.start();
    } 

我想通过使用其他按钮来停止执行此线程。我试过t.stop(); t.destroy();杀死pid,但总是有些结果我不能停止执行。 在我的metod execShellCmd的实现中,我使用了一个摇摆工作者,但我的问题仍然是如何停止执行。

public static void execShellCmd(String cmd) {
        if (runningProcess != null) {
            // TODO print some suitable warning about process already running
            return;
        }
        try {

            //testPath = getPath();

            System.out.println("le chemin de travail.." +testPath);
            System.out.println(cmd);
            Runtime runtime = Runtime.getRuntime();
            process = runtime.exec(new String[] { "sh",
                    testPath + "/install.sh", cmd });
            new SwingWorker<Integer, Void>() {
                protected Integer doInBackground() {
                    // read process output first
                    BufferedReader buf = new BufferedReader(
                            new InputStreamReader(process.getInputStream()));
                    String line = "";
                    try {
                        while ((line = buf.readLine()) != null) {
                            System.out.println("exec response: " + line);
                            log = line;
                            writeToFile(line);
                            value ++;
                        }
                    } catch (IOException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
                    }
                     System.out.println("la valeur d'execution "+InstallApk.value);
                    // only once we've run out of output can we call waitFor
                    while (true) {
                        try {
                            return runningProcess.waitFor();
                        } catch (InterruptedException e) {
                            // do nothing, wait again
                        } finally {
                            Thread.interrupted();
                        }
                    }
                }
                protected void done() {
                    runningProcess = null;
                }
            }.execute();
        } catch (Exception e) {
            System.out.println(e);
        }
    }

1 个答案:

答案 0 :(得分:6)

从您提供的代码中,您可能希望一般性地阅读Swing中的线程,因为听起来问题是由于对线程模型的工作方式没有了解而产生的。

基本上,你有一个事件调度线程,应该调用所有 Swing操作(如果你还没有在这个EDT上,可以使用SwingUtilities.invokeLater()。)但是,没有多久运行任务应该在EDT上执行,否则(如你所见)它会锁定GUI直到它们完成。

如果你想执行一个长时间运行的任务,你就是在正确的行,但你通常使用SwingWorker,它允许异步执行长时间运行的任务,但也提供回调在任务完成时在EDT上。

在停止这样一个线程方面,一个简单的方法是让它监视一个字段作为执行,并在你希望它停止时从EDT(一个简单的操作)切换该字段。不要使用stop()方法或同样的方法,它们有很多问题(它们因为一个充分的理由而被弃用。)如果您使用的是SwingWorker,那么它取消了内置的支持明智的使用。