软件编程
位置:首页>> 软件编程>> Android编程>> Android基于HttpUrlConnection类的文件下载实例代码

Android基于HttpUrlConnection类的文件下载实例代码

作者:何叫兽  发布时间:2022-08-28 02:18:49 

标签:android,文件下载,httpurlconnection

废话不多说了,直接给大家贴代码了,具体代码如所示:


/**
  * 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, 0, 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类的文件下载实例代码网站的支持!

来源:http://www.cnblogs.com/hejiaoshou/archive/2017/09/01/7463318.html

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com