문제

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.

도움이 되었습니까?

해결책

Call:

progressBar.setMaximum(numberOfFilesToDownload);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top