I am copying a file from my computer to an external device, such as an SD card, and I would like to get the progress during the file copying process. I am using SwingWorker so that I can have multiple files copying at the same time. I am not sure how to get the current progress and send it to the SwingWorker publish() method. Here is my code to copy the file:
FileInputStream finStream = new FileInputStream(sourceFile);
FileOutputStream foutStream = new FileOutputStream(destFile);
/*
* Adapted from http://www.java2s.com/Code/Java/File-Input Output/UseBufferedInputStreamandBufferedOutputStreamtocopybytearray.html
*/
BufferedInputStream bufIS = new BufferedInputStream(finStream);
BufferedOutputStream bufOS = new BufferedOutputStream(foutStream);
byte[] byteBuff = new byte[32 * 1024];
int len;
while ((len = bufIS.read(byteBuff)) > 0){
bufOS.write(byteBuff, 0, len);
publish(/*What do I put here?*/);
}
bufIS.close();
bufOS.close();
Swingworker has already a "progress feature", use it instead of
publish/process
Then you can use
worker.getProgress()
inEDT
or aPropertyChangeListener
with a progressBar or whateverE.g:
Or
If you prefer
publish/process
thenpublic class MyWorker extends SwingWorker<Void, Integer>
and you will be able to callpublish
with an Integer