有不清楚的地方歡迎各位朋友們留言 ...
1 /** 2 * get方法的文件下載 3 * <p> 4 * 特別說明 android中的progressBar是google唯一的做了處理的可以在子線程中更新UI的控制項 5 * 6 * @param path 7 */ 8 private void httpDown(final String path) { 9 new Thread() { 10 @Override 11 public void run() { 12 URL url; 13 HttpURLConnection connection; 14 try { 15 //統一資源 16 url = new URL(path); 17 //打開鏈接 18 connection = (HttpURLConnection) url.openConnection(); 19 //設置鏈接超時 20 connection.setConnectTimeout(4000); 21 //設置允許得到伺服器的輸入流,預設為true可以不用設置 22 connection.setDoInput(true); 23 //設置允許向伺服器寫入數據,一般get方法不會設置,大多用在post方法,預設為false 24 connection.setDoOutput(true);//此處只是為了方法說明 25 //設置請求方法 26 connection.setRequestMethod("GET"); 27 //設置請求的字元編碼 28 connection.setRequestProperty("Charset", "utf-8"); 29 //設置connection打開鏈接資源 30 connection.connect(); 31 32 //得到鏈接地址中的file路徑 33 String urlFilePath = connection.getURL().getFile(); 34 //得到url地址總文件名 file的separatorChar參數表示文件分離符 35 String fileName = urlFilePath.substring(urlFilePath.lastIndexOf(File.separatorChar) + 1); 36 //創建一個文件對象用於存儲下載的文件 此次的getFilesDir()方法只有在繼承至Context類的類中 37 // 可以直接調用其他類中必須通過Context對象才能調用,得到的是內部存儲中此應用包名下的文件路徑 38 //如果使用外部存儲的話需要添加文件讀寫許可權,5.0以上的系統需要動態獲取許可權 此處不在不做過多說明。 39 File file = new File(getFilesDir(), fileName); 40 //創建一個文件輸出流 41 FileOutputStream outputStream = new FileOutputStream(file); 42 43 //得到鏈接的響應碼 200為成功 44 int responseCode = connection.getResponseCode(); 45 if (responseCode == HttpURLConnection.HTTP_OK) { 46 //得到伺服器響應的輸入流 47 InputStream inputStream = connection.getInputStream(); 48 //獲取請求的內容總長度 49 int contentLength = connection.getContentLength(); 50 51 //設置progressBar的Max 52 mPb.setMax(contentLength); 53 54 55 //創建緩衝輸入流對象,相對於inputStream效率要高一些 56 BufferedInputStream bfi = new BufferedInputStream(inputStream); 57 //此處的len表示每次迴圈讀取的內容長度 58 int len; 59 //已經讀取的總長度 60 int totle = 0; 61 //bytes是用於存儲每次讀取出來的內容 62 byte[] bytes = new byte[1024]; 63 while ((len = bfi.read(bytes)) != -1) { 64 //每次讀取完了都將len累加在totle里 65 totle += len; 66 //每次讀取的都更新一次progressBar 67 mPb.setProgress(totle); 68 //通過文件輸出流寫入從伺服器中讀取的數據 69 outputStream.write(bytes, 0, len); 70 } 71 //關閉打開的流對象 72 outputStream.close(); 73 inputStream.close(); 74 bfi.close(); 75 76 runOnUiThread(new Runnable() { 77 @Override 78 public void run() { 79 Toast.makeText(MainActivity.this, "下載完成!", Toast.LENGTH_SHORT).show(); 80 } 81 }); 82 } 83 84 } catch (Exception e) { 85 e.printStackTrace(); 86 } 87 } 88 }.start(); 89 }
有不清楚的地方歡迎各位朋友們留言