简体   繁体   中英

How to get number of bytes that FileChannel.transferFrom wrote during it's writting

HttpURLConnection conn = (HttpURLConnection) url.openConnection();
ReadableByteChannel rbc = Channels.newChannel(conn.getInputStream());   
FileOutputStream fos = new FileOutputStream(fileName);
FileChannel fch = fos.getChannel();
fch.transferFrom(rbc, 0, Long.MAX_VALUE);

I debugged it and reaches the next line of code after the download is completed. How can I get the number of bytes that transferFrom() wrote during it's writing a file, to write it to a log or to the console?

Something like this

while (len = fch.getWriteBytes()) {
 System.out.println(len + " bytes : " + (len/total)*100 + "%");
}

Sorry for incomplete question.

As describe in the API , you should write:

long bytes = fch.transferFrom(rbc, 0, Long.MAX_VALUE);

Then, bytes will contain the number of bytes actually transferred (note: this can be zero).

EDIT:

The transferFrom() is an OS-level function and therefore can't really be monitored directly from the FileChannel class.

This SO answer seems to have a good approach - wrapping the ReadableByteChannel class to monitor the read() calls.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM