免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

Android應用中實現文件下載的方法有哪些-創新互聯

本篇文章為大家展示了Android應用中實現文件下載的方法有哪些,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

成都創新互聯憑借在網站建設、網站推廣領域領先的技術能力和多年的行業經驗,為客戶提供超值的營銷型網站建設服務,我們始終認為:好的營銷型網站就是好的業務員。我們已成功為企業單位、個人等客戶提供了成都做網站、網站制作服務,以良好的商業信譽,完善的服務及深厚的技術力量處于同行領先地位。

一、自己封裝URLConnection 連接請求類

 public void downloadFile1() {
  try{
    //下載路徑,如果路徑無效了,可換成你的下載路徑
    String url = "http://c.qijingonline.com/test.mkv";
    String path = Environment.getExternalStorageDirectory().getAbsolutePath();

    final long startTime = System.currentTimeMillis();
    Log.i("DOWNLOAD","startTime="+startTime);
    //下載函數
    String filename=url.substring(url.lastIndexOf("/") + 1);
    //獲取文件名
    URL myURL = new URL(url);
    URLConnection conn = myURL.openConnection();
    conn.connect();
    InputStream is = conn.getInputStream();
    int fileSize = conn.getContentLength();//根據響應獲取文件大小
    if (fileSize <= 0) throw new RuntimeException("無法獲知文件大小 ");
    if (is == null) throw new RuntimeException("stream is null");
    File file1 = new File(path);
    if(!file1.exists()){
      file1.mkdirs();
    }
    //把數據存入路徑+文件名
    FileOutputStream fos = new FileOutputStream(path+"/"+filename);
    byte buf[] = new byte[1024];
    int downLoadFileSize = 0;
    do{
      //循環讀取
      int numread = is.read(buf);
      if (numread == -1)
      {
        break;
      }
      fos.write(buf, 0, numread);
      downLoadFileSize += numread;
      //更新進度條
    } while (true);
    Log.i("DOWNLOAD","download success");
    Log.i("DOWNLOAD","totalTime="+ (System.currentTimeMillis() - startTime));
    is.close();
  } catch (Exception ex) {
    Log.e("DOWNLOAD", "error: " + ex.getMessage(), ex);
  }
}

當前標題:Android應用中實現文件下載的方法有哪些-創新互聯
URL標題:http://m.newbst.com/article28/dpoocp.html

成都網站建設公司_創新互聯,為您提供網站維護App開發品牌網站建設企業建站關鍵詞優化網站策劃

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

h5響應式網站建設