博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android断点续传实现方案之三
阅读量:5070 次
发布时间:2019-06-12

本文共 409 字,大约阅读时间需要 1 分钟。

URL url = new URL("http://www.sjtu.edu.cn/down.zip");   HttpURLConnection httpConnection = (HttpURLConnection)url.openConnection();     // 设置 User-Agent   httpConnection.setRequestProperty("User-Agent","NetFox");   // 设置断点续传的开始位置   httpConnection.setRequestProperty("RANGE","bytes=2000070");   // 获得输入流   InputStream input = httpConnection.getInputStream();

 

转载于:https://www.cnblogs.com/xushihai/p/4600906.html

你可能感兴趣的文章
Jenkins技巧:如何更新Jenkins到最新版本
查看>>
JS之解决scroll方法不兼容的写法来获取top和left
查看>>
Django 组件- 中间件
查看>>
Fragment Transactions Reference/Animations
查看>>
PlayMaker 1.9 烦人的小提示
查看>>
redis—操作基础
查看>>
Python 3.6.5安装过程中小错误zipimport.ZipImportError: can't decompress data; zlib not available...
查看>>
超级内存NVDIMM:下一代数据中心存储关键技术
查看>>
mysql分区研究
查看>>
eclipse普通web项目转maven项目-2019版
查看>>
JS产生随机数的几个用法!
查看>>
web端调用Android端方法的过程
查看>>
shell脚本编写笔记
查看>>
适配器
查看>>
Jar程序使用MyBatis集成阿里巴巴druid连接池
查看>>
面向对象之封装
查看>>
构造sql的方法
查看>>
SpringBoot读取application.properties文件
查看>>
SpringMVC之一:SpringMVC原理
查看>>
用 config drive 配置网络
查看>>