
废话不多说了,直接给大家贴代码了,具体代码如所示:
/** * get方法的文件下载 * <p> * 特别说明 androID中的progressbar是Google唯一的做了处理的可以在子线程中更新UI的控件 * * @param path */ private voID httpDown(final String path) { new Thread() { @OverrIDe public voID run() { URL url; httpURLConnection connection; try { //统一资源 url = new URL(path); //打开链接 connection = (httpURLConnection) url.openConnection(); //设置链接超时 connection.setConnectTimeout(4000); //设置允许得到服务器的输入流,默认为true可以不用设置 connection.setDoinput(true); //设置允许向服务器写入数据,一般get方法不会设置,大多用在post方法,默认为false connection.setDoOutput(true);//此处只是为了方法说明 //设置请求方法 connection.setRequestMethod("GET"); //设置请求的字符编码 connection.setRequestProperty("Charset","utf-8"); //设置connection打开链接资源 connection.connect(); //得到链接地址中的file路径 String urlfilePath = connection.getURL().getfile(); //得到URL地址总文件名 file的separatorChar参数表示文件分离符 String filename = urlfilePath.substring(urlfilePath.lastIndexOf(file.separatorChar) + 1); //创建一个文件对象用于存储下载的文件 此次的getfilesDir()方法只有在继承至Context类的类中 // 可以直接调用其他类中必须通过Context对象才能调用,得到的是内部存储中此应用包名下的文件路径 //如果使用外部存储的话需要添加文件读写权限,5.0以上的系统需要动态获取权限 此处不在不做过多说明。 file file = new file(getfilesDir(),filename); //创建一个文件输出流 fileOutputStream outputStream = new fileOutputStream(file); //得到链接的响应码 200为成功 int responseCode = connection.getResponseCode(); if (responseCode == httpURLConnection.http_OK) { //得到服务器响应的输入流 inputStream inputStream = connection.getinputStream(); //获取请求的内容总长度 int contentLength = connection.getContentLength(); //设置progressbar的Max mPb.setMax(contentLength); //创建缓冲输入流对象,相对于inputStream效率要高一些 BufferedinputStream bfi = new BufferedinputStream(inputStream); //此处的len表示每次循环读取的内容长度 int len; //已经读取的总长度 int totle = 0; //bytes是用于存储每次读取出来的内容 byte[] bytes = new byte[1024]; while ((len = bfi.read(bytes)) != -1) { //每次读取完了都将len累加在totle里 totle += len; //每次读取的都更新一次progressbar mPb.setProgress(totle); //通过文件输出流写入从服务器中读取的数据 outputStream.write(bytes,len); } //关闭打开的流对象 outputStream.close(); inputStream.close(); bfi.close(); runOnUiThread(new Runnable() { @OverrIDe public voID run() { Toast.makeText(MainActivity.this,"下载完成!",Toast.LENGTH_SHORT).show(); } }); } } catch (Exception e) { e.printstacktrace(); } } }.start(); }总结
以上所述是小编给大家介绍的AndroID基于httpUrlConnection类的文件下载实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!
总结以上是内存溢出为你收集整理的Android基于HttpUrlConnection类的文件下载实例代码全部内容,希望文章能够帮你解决Android基于HttpUrlConnection类的文件下载实例代码所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)