download(urlString, filename, savePath+"/"+String.valueOf(imgList.get(i).get("hotelId")));
/** * 根據路徑 下載圖片 然後 保存到對應的目錄下 * @param urlString 下載源地址路徑 http://media.expedia.com/hotels/1000000/10000/100/1/1_17_b.jpg * @param filename 文件名 * @param savePath 保存路徑 /jdylog/pic/JDY000001 * @return * @throws Exception */ public void download(String urlString, String filename,String savePath) throws Exception { // 構造URL // System.setProperty("http.proxySet", "true"); // System.setProperty("http.proxyHost", "192.168.2.138"); // System.setProperty("http.proxyPort", "1081"); URL url = new URL(urlString); // 打開連接 URLConnection con = url.openConnection(); //設置請求的路徑 con.setConnectTimeout(5*1000); // 輸入流 InputStream is = con.getInputStream(); // 1K的數據緩沖 byte[] bs = new byte[1024]; // 讀取到的數據長度 int len; // 輸出的文件流 File sf=new File(savePath); if(!sf.exists()){ sf.mkdirs(); } OutputStream os = new FileOutputStream(sf.getPath()+"/"+filename); // 開始讀取 while ((len = is.read(bs)) != -1) { os.write(bs, 0, len); } // 完畢,關閉所有鏈接 os.close(); is.close(); }