首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

实现http续传上载的方式

2012-09-24 
实现http续传下载的方式public void download() throws Exception {URL url new URL(http://localhost/

实现http续传下载的方式

public void download() throws Exception {URL url = new URL("http://localhost/down.zip");HttpURLConnection httpConnection = (HttpURLConnection) url.openConnection();httpConnection.setRequestProperty("User-Agent", "Firefox");// range:-1000(like 1-1000)// range:1000-2000httpConnection.setRequestProperty("Range", "bytes=1024000-5689013");InputStream input = httpConnection.getInputStream();RandomAccessFile file = new RandomAccessFile("c:\\down.zip", "rw");long pos = 1024000;file.seek(pos);byte[] buff = new byte[1024];int read;while ((read = input.read(buff, 0, 1024)) > 0) {file.write(buff, 0, read);}}
?

热点排行