lasantha 7 years ago
commit d605fb058b

@ -140,13 +140,15 @@ public class TryIt {
while ((count = in.read(data, 0, 1024)) != -1) {
out.write(data, 0, count);
sumCount += count;
if ((size > 0 && (System.currentTimeMillis() - startingTime > 5000))
if ((size > 0 && (System.currentTimeMillis() - startingTime > 100))
|| (sumCount / size * 100.0) == 100) {
System.out.println("Downloading: "
+ new DecimalFormat("#.##").format((sumCount / size * 100.0)) + " %");
System.out.print("\r\r\r\r\r\r\r\r\r\r");
System.out.print("Downloading: "
+ new DecimalFormat("#0.00").format((sumCount / size * 100.00)) + " %");
startingTime = System.currentTimeMillis();
}
}
System.out.println();
} catch (MalformedURLException e) {
System.out.println("Error in download URL of " + localPath);
System.out.println("URL provided " + remotePath);
@ -897,6 +899,7 @@ public class TryIt {
} catch (IOException e) {
handleException("Extraction of " + zipFile + " failed", e);
}
System.out.println("Done ...");
if (!new File(zipFile).delete()) {
System.out.println("Downloaded zip : " + zipFile + " - not deleted");
}

Loading…
Cancel
Save