使用线程填充JList

时间:2013-09-26 21:07:57

标签: java arrays multithreading jlist defaultlistmodel

我希望JList可以填充多个线程。 我试过这种方式,但jlist是空的。 如果jlist在运行中更新会很好 有两个线程,另一个在另一个方向加载

            new Thread(new Runnable() {
            @Override
            public void run() {
                for(i=0; i<cells.size()/2; i++){
                    System.out.println("thread");

                    try{
                        HtmlPage p = client.getPage("https://tbilisi.embassytools.com/en/slotsReserve?slot="+cells.get(i).getAttribute("data-slotid"));
                        pages.add(p);
                        if(!p.getUrl().toString().contains("slotsReserve"))
                            model.add(i,p.getUrl().toString());
                    }
                    catch (Exception e){
                        e.printStackTrace();
                    }

                }
            }
        });
list1.setModel(model)

提前致谢

更新 * 所以我使用SwingWorker修复了

2 个答案:

答案 0 :(得分:1)

Swing是一个单线程框架,也就是说,期望对UI的所有更新和修改都是在事件调度线程的上下文中完成的。

同样,你应该在EDT中不做任何阻止或阻止它处理事件队列的事情(比如从网上下载内容)。

这引发了一个难题。无法更新EDT之外的UI,需要使用某种后台进程来执行耗时/阻塞任务......

只要项目的顺序不重要,您就可以使用多个SwingWorker来代替Thread s,例如......

DefaultListModel model = new DefaultListModel();

/*...*/

LoadWorker worker = new LoadWorker(model);
worker.execute();    

/*...*/

public class LoaderWorker extends SwingWorker<List<URL>, String> {

    private DefaultListModel model;

    public LoaderWorker(DefaultListModel model) {
        this.model = model;
    }

    protected void process(List<String> pages) {
        for (String page : pages) {
            model.add(page);
        }
    }

    protected List<URL> doInBackground() throws Exception {
        List<URL> urls = new ArrayList<URL>(25);
        for(i=0; i<cells.size()/2; i++){
            try{
                HtmlPage p = client.getPage("https://tbilisi.embassytools.com/en/slotsReserve?slot="+cells.get(i).getAttribute("data-slotid"));
                pages.add(p);
                if(!p.getUrl().toString().contains("slotsReserve")) {
                    publish(p.getUrl().toString());
                    urls.add(p.getUrl());
                }
            }
            catch (Exception e){
                e.printStackTrace();
            }        
        }
        return urls;
    }
} 

这允许您在后台(doInBackground)和publish执行阻止/长时间运行此方法的结果,然后在EDT的上下文中process

有关详细信息,请参阅Concurrency in Swing

答案 1 :(得分:0)

Swing为not thread safe应该使用SwingUtilities运行多个线程来更新swing。

javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
      doWhateverYouWant();
    }
});

read more