JAVA 實現通過URL下載文件到本地庫


 1 /**
 2      * TODO 下載文件到本地
 3      * @author nadim  
 4      * @date Sep 11, 2015 11:45:31 AM
 5      * @param fileUrl 遠程地址
 6      * @param fileLocal 本地路徑
 7      * @throws Exception 
 8      */
 9     public void downloadFile(String fileUrl,String fileLocal) throws Exception {
10         URL url = new URL(fileUrl);
11         HttpURLConnection urlCon = (HttpURLConnection) url.openConnection();
12         urlCon.setConnectTimeout(6000);
13         urlCon.setReadTimeout(6000);
14         int code = urlCon.getResponseCode();
15         if (code != HttpURLConnection.HTTP_OK) {
16             throw new Exception("文件讀取失敗");
17         }
18         
19         //讀文件流
20         DataInputStream in = new DataInputStream(urlCon.getInputStream());
21         DataOutputStream out = new DataOutputStream(new FileOutputStream(fileLocal));
22         byte[] buffer = new byte[2048];
23         int count = 0;
24         while ((count = in.read(buffer)) > 0) {
25             out.write(buffer, 0, count);
26         }
27         out.close();
28         in.close();
29     }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM