Search:

Type: Posts; User: copeg

Search: Search took 0.07 seconds.

  1. Replies
    19
    Views
    2,831

    Re: newbie help threads

    SwingWorker or starting another thread will allow you to perform the long running task without the GUI locking up. Be sure that if you start another thread, to make ANY updates to the GUI using...
  2. Replies
    19
    Views
    2,831

    Re: newbie help threads

    An alternative is to use SwingUtilities.invokeLater, with the parameter Runnable implementation updating the GUI. This dispatches to the EDT, and is a good alternative to SwingWorker when one intends...
Results 1 to 2 of 2