wget direct / multithread / singlethread java download library.
Support single thread, single thread with download continue / resume, and multithread downloads.
-
Handles for HTTP errors / redirects
-
Multipart / multithread downloads
-
Handle for Content-Disposition (remote file name)
-
Support for server RANGE feature (resume downloads / multipart logic)
-
Proxy support
-
Speed measurments
-
Handle HTML redirects
Here is a five kind of exceptions.
-
Fatal exception. all RuntimeException's We shall stop application
-
DownloadError (extends RuntimeException) We unable to process following url and shall stop to download it. It may be rised by problem with local file.
-
DownloadMultipartError (extends DownloadError) We unable to download multhread source. Shall stop downloading and parse each Parts exceptions.
-
DownloadInterrceptedError (extends DownloadError) Current thread was interrcepted by main app (you). So handle it your self ;)
-
DownloadIOError (extends DownloadError) Some simple exceptoins, like Timeout exceptions we handle internaly, and retry part / download automaticaly without user interrraction. But some hudge errors, like problems with file on server (HTTP 403) we pass to the App. It may stop download, or auto update download URL and automaticaly retry the download without any user interaction.
package com.github.axet.wget;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import com.github.axet.wget.WGet;
public class Example {
public static void main(String[] args) {
try {
// choise internet url (ftp, http)
URL url = new URL("http://www.dd-wrt.com/routerdb/de/download/D-Link/DIR-300/A1/ap61.ram/2049");
// choise target folder or filename "/Users/axet/Downloads/ap61.ram"
File target = new File("/Users/axet/Downloads/");
// initialize wget object
WGet w = new WGet(url, target);
// single thread download. will return here only when file download
// is complete (or error raised).
w.download();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (RuntimeException allDownloadExceptions) {
allDownloadExceptions.printStackTrace();
}
}
}
package com.github.axet.wget;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import com.github.axet.wget.info.DownloadInfo;
public class ExampleDirectResume {
public static void main(String[] args) {
try {
// choise internet url (ftp, http)
URL url = new URL("http://download.virtualbox.org/virtualbox/4.3.28/VirtualBox-4.3.28-100309-OSX.dmg");
// choise target folder or filename "/Users/axet/Downloads/ap61.ram"
File targetFile = new File("/Users/x/Downloads/vb.dmg");
// get file remote information
DownloadInfo info = new DownloadInfo(url);
info.extract();
// initialize wget object
WGet w = new WGet(info, targetFile);
// single thread download. will return here only when file download
// is complete (or error raised).
w.download();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (RuntimeException allDownloadExceptions) {
allDownloadExceptions.printStackTrace();
}
}
}
package com.github.axet.wget;
import java.io.File;
import java.net.URL;
import java.util.concurrent.atomic.AtomicBoolean;
import com.github.axet.wget.info.DownloadInfo;
import com.github.axet.wget.info.DownloadInfo.Part;
import com.github.axet.wget.info.ex.DownloadMultipartError;
public class ExampleApplicationManaged {
public static class WGetStatus implements Runnable {
DownloadInfo info;
SpeedInfo speedInfo = new SpeedInfo();
long last;
public WGetStatus(DownloadInfo info) {
this.info = info;
}
public void run() {
// notify app or save download state
// you can extract information from DownloadInfo info;
switch (info.getState()) {
case EXTRACTING:
case EXTRACTING_DONE:
System.out.println(info.getState());
break;
case DONE:
// finish speed calculation by adding remaining bytes speed
speedInfo.end(info.getCount());
// print speed
System.out.println(String.format("%s average speed (%s)", info.getState(),
formatSpeed(speedInfo.getAverageSpeed())));
break;
case RETRYING:
System.out.println(info.getState() + " r:" + info.getRetry() + " d:" + info.getDelay());
break;
case DOWNLOADING:
speedInfo.step(info.getCount());
long now = System.currentTimeMillis();
if (now - 1000 > last) {
last = now;
String parts = "";
if (info.getParts() != null) { // not null if multipart enabled
for (Part p : info.getParts()) {
switch (p.getState()) {
case DOWNLOADING:
parts += String.format("Part#%d(%.2f) ", p.getNumber(),
p.getCount() / (float) p.getLength());
break;
case ERROR:
case RETRYING:
parts += String.format("Part#%d(%s) ", p.getNumber(),
p.getException().getMessage() + " r:" + p.getRetry() + " d:" + p.getDelay());
break;
default:
break;
}
}
}
float p = info.getCount() / (float) info.getLength();
System.out.println(String.format("%.2f %s (%s / %s)", p, parts,
formatSpeed(speedInfo.getCurrentSpeed()), formatSpeed(speedInfo.getAverageSpeed())));
}
break;
default:
break;
}
}
}
public static String formatSpeed(long s) {
if (s > 0.1 * 1024 * 1024 * 1024) {
float f = s / 1024f / 1024f / 1024f;
return String.format("%.1f GB", f);
} else if (s > 0.1 * 1024 * 1024) {
float f = s / 1024f / 1024f;
return String.format("%.1f MB", f);
} else {
float f = s / 1024f;
return String.format("%.1f kb", f);
}
}
public static void main(String[] args) {
AtomicBoolean stop = new AtomicBoolean(false);
try {
// choice file
URL url = new URL("http://download.virtualbox.org/virtualbox/5.0.16/VirtualBox-5.0.16-105871-OSX.dmg");
// initialize url information object with or without proxy
// DownloadInfo info = new DownloadInfo(url, new ProxyInfo("proxy_addr", 8080, "login", "password"));
DownloadInfo info = new DownloadInfo(url);
WGetStatus status = new WGetStatus(info);
// extract information from the web
info.extract(stop, status);
// enable multipart download
info.enableMultipart();
// Choice target file or set download folder
File target = new File("/Users/axet/Downloads/VirtualBox-5.0.16-105871-OSX.dmg");
// create wget downloader
WGet w = new WGet(info, target);
// init speedinfo
status.speedInfo.start(0);
// will blocks until download finishes
w.download(stop, status);
} catch (DownloadMultipartError e) {
throw e;
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
package com.github.axet.wget;
import com.github.axet.wget.info.BrowserInfo;
import com.github.axet.wget.info.DownloadInfo;
import com.github.axet.wget.info.URLInfo;
public class OptionsList {
public static void main(String[] args) {
DirectMultipart.THREAD_COUNT = 3;
SpeedInfo.SAMPLE_LENGTH = 1000;
SpeedInfo.SAMPLE_MAX = 20;
BrowserInfo.USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36";
DownloadInfo.PART_LENGTH = 5 * 1024 * 1024; // bytes
URLInfo.READ_TIMEOUT = 5 * 1000; // milliseconds
URLInfo.CONNECT_TIMEOUT = 5 * 1000; // milliseconds
RetryWrap.RETRY_COUNT = 5; /// 5 times then fail or -1 for infinite
RetryWrap.RETRY_DELAY = 3; // seconds between retries
}
}
<dependency>
<groupId>com.github.axet</groupId>
<artifactId>wget</artifactId>
<version>1.4.3</version>
</dependency>
compile ('com.github.axet:wget:1.4.3') {
exclude group: 'com.thoughtworks.xstream', module: 'xstream'
}