java jprogressbar hangs during heavy operation

有些话、适合烂在心里 提交于 2019-12-02 11:00:42

You should call the heavyLoadMethod in a separate thread. You can use a java.util.concurrent.Executor for it:

Executor executor = java.util.concurrent.Executors.newSingleThreadExecutor();
executor.submit(new Runnable() { public void run() { heavyLoadMethod();}});

Now the method will be called in a separate thread and the progress bar will be displayed properly.

You are blocking the EDT from repainting the GUI.

Read the section from the Swing tutorial on Concurrency in Swing for a full explanation of the problem.

Also, read the section on "How to Use Progress Bars" for a working example.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!