1 Star 0 Fork 0

schwarizard / Chapter 11

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Download 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
schwarizard 提交于 2016-04-11 19:13 . new file
import java.net.URL;
import java.io.*;
public class Download {
public static void main(String[] args) throws Exception {
URL[] urls = {
new URL("http://openhome.cc/Gossip/Encoding/"),
new URL("http://openhome.cc/Gossip/Scala/"),
new URL("http://openhome.cc/Gossip/JavaScript/"),
new URL("http://openhome.cc/Gossip/Python/")
};
String[] fileNames = {
"Encoding.html",
"Scala.html",
"JavaScript.html",
"Python.html"
};
for(int i = 0; i < urls.length; i++) {
dump(urls[i].openStream(), new FileOutputStream(fileNames[i]));
}
}
static void dump(InputStream src, OutputStream dest) throws IOException {
try(InputStream input = src; OutputStream output = dest) {
byte[] data = new byte[1024];
int length;
while ((length = input.read(data)) != -1) {
output.write(data, 0, length);
}
}
}
}
Java
1
https://gitee.com/schwarizard/Chapter-11.git
git@gitee.com:schwarizard/Chapter-11.git
schwarizard
Chapter-11
Chapter 11
master

搜索帮助