0

I want to add JProgressBar that will fill up during the download process in my program which will download files.

Thr question is How do I make that the progress bar will add the correct amount in the setValue (eg: when it downloads the last file, the JPB will be completed).

Note that the number of files to download are variable.

Alaeddine
  • 1,571
  • 2
  • 22
  • 46
3751_Creator
  • 656
  • 2
  • 8
  • 22

1 Answers1

1

Call:

progressBar.setMaximum(numberOfFilesToDownload);
Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433