Skip to content

Instantly share code, notes, and snippets.

View java-MagicWang's full-sized avatar

Johnny Wong java-MagicWang

  • WuXi, JiangSu, China
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
</head>
<body>
<div>
<span id="timer"></span>
<br/>
public void download(String url, String fileURL) {
try {
URL website = new URL(url);
ReadableByteChannel rbc = Channels.newChannel(website.openStream());
FileOutputStream fos = new FileOutputStream(fileURL);
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
} catch (Exception e) {
e.printStackTrace();
}
}