Hi,
i have some problems using FTPProgressMonitor. There are 3 classes:
Main (SWING) (with a progress bar),
ftp (doDownload, doUpload),
and FtpProgressMonitor (bytesTransferred).
I try to pass a reference to progress bar, like this:
public void bytesTransferred(long count) {
this.count = count;
float answer = (((int)count / (int)MyNum)+1 );
System.out.println(answer + " : " + answer );
j.progressbar.setValue((int)answer);
}
But the progress bar do nothing. I only receive bytes transferred on console, and only 2 times then my program hangs-up.
Please, help me..
nic