lasantha 8 years ago
commit d605fb058b

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

Loading…
Cancel
Save