I download some files in my java app and implemented a download monitor dialog. But recently I compressed all the files with gzip and now the download monitor is kind of broken.
I open the file as a GZIPInputStream and update the download status after every kB downloaded. If the file has a size of 1MB the progress goes up to e.g. 4MB which is the uncompressed size. I want to monitor the compressed download progress. Is this possible?
EDIT: To clarify: I'm reading the bytes from the GZipInputStream which are the uncompressed bytes. So that does not give me the right filesize at the end.
Here is my code:
URL url = new URL(urlString);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.connect();
...
File file = new File("bibles/" + name + ".xml");
if(!file.exists())
file.createNewFile();
out = new FileOutputStream(file);
in = new BufferedInputStream(new GZIPInputStream(con.getInputStream()));
byte[] buffer = new byte[1024];
int count;
while((count = in.read(buffer)) != -1) {
out.write(buffer, 0, count);
downloaded += count;
this.stateChanged();
}
...
private void stateChanged() {
this.setChanged();
this.notifyObservers();
}
Thanks for any help!
GZipInputStreamwhich is the uncompressed stream. So this is not the real filesize that is downloaded. – dbrettschneider Aug 25 '12 at 18:36