Java中 URL实现断点下载
摘要:复制代码代码如下:URLur=newURL("http://localhost:8080/first/he.txt");HttpURLCon...
复制代码 代码如下:
URL ur = new URL("http://localhost:8080/first/he.txt");
HttpURLConnection conn = (HttpURLConnection) ur.openConnection();//URL.openConnection() -- >return URLCommection(直接子类HttpURLConnection)
conn.setRequestProperty("Range", "bytes=5-");//设置请求参数属性,设置下载从第5个字节开始下载;
InputStream in = conn.getInputStream();
int len = 0;
byte[] buf = new byte[1024];
FileOutputStream out = new FileOutputStream("d:a.txt");
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
【Java中 URL实现断点下载】相关文章:
上一篇:
Java事务的个人理解小结
下一篇:
java 二维数组矩阵乘法的实现方法