F
F
frankwolf2020-03-10 09:41:03
Java
frankwolf, 2020-03-10 09:41:03

How to keep JFrame active while looping in the main thread?

I want to make the application start unpacking the archive in a separate thread, but before that, a JFrame with a progress bar would appear. It would be fully active during unpacking, but at the same time, that code in the main thread will be executed after unpacking is completed (for this I want to use an infinite loop that will stop after unpacking is completed)
How can this be effectively, correctly implemented?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Cheremisin, 2020-03-10
@leahch

Usually you don't need to do an infinite loop for this. You can simply send events through property changes through actionListener. Read here - https://docs.oracle.com/javase/tutorial/uiswing/co...
If you have questions, ask.
Yes, you can leave the JFrame active, for example, by making it modal or by embedding a JDialog in it.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question