I am developing a java application

but my application Freeze when I start the process of my application

therefore I can update my GUI during the process

do you guys have any idea how to fixed this ?

I'll appreciate for your reply thx

Guys I already try this but it still freezes the GUI

here are my Code

final String key = keywords;
        final int dept = dep;
        final double rele = relevance;

        SwingWorker worker = new SwingWorker<Map, Void>() {
            @Override
            public Map doInBackground() {
                final Map resultMap = focusedCrawlingMain.Search(key, dept, rele);  

                return resultMap;
            }

            public void Done(Map dataMap) {
                final List resultList = (List) dataMap.get("relevantList");
                List resultListValue = (List) dataMap.get("relevantListScore");
                int size = resultList.size();

                newData = new String[size][3];
                for(int i = 0; i < size; i++){
                    newData[i][0] = String.valueOf(i+1);
                    newData[i][1] = String.valueOf(resultList.get(i));
                    newData[i][2] = String.valueOf(resultListValue.get(i));
                    model.addRow((new Object[]{newData[i][0],newData[i][1],newData[i][2]}));
                }
            }
        };
        worker.run();
link|improve this question

55% accept rate
5  
Why is this not a real question? Seems to me like a really good question, but it's probably been asked and answered many times before. – David Wallace Jan 14 at 11:08
1  
@Carlo : I really don't know much about SwingWorker thingy, but why not you start a new Thread from your main method as suggested by Darin Dimitrov, and perform your calculations in that thread, that won't let your GUI freeze in any way. Regards – nIcE cOw Jan 14 at 13:32
@Gagandeep Bali since I dont know how to use MultiThreading can you show it to me? – Carlo Jan 14 at 13:38
@Carlo : Simply make a new Class which implements Runnable and inside it's run method, do your calculations. And in your main Method, write this Thread threadName = new Thread(new CalculationClass()); threadName.start(); That will do i guess. Regards – nIcE cOw Jan 14 at 14:00
ok I'll try thank you – Carlo Jan 14 at 14:19
show 5 more comments
feedback

2 Answers

You need to look at SwingWorker.

link|improve this answer
feedback

You could perform the calculation in a separate thread than the main GUI thread. Here's an article you may take a look at which also covers the different things you should be aware when doing multithreading in a swing application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.