亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

網絡文件怎么利用Java進行讀取并下載

發布時間:2020-12-02 16:33:51 來源:億速云 閱讀:171 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關網絡文件怎么利用Java進行讀取并下載,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

具體內容如下

import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;

/**
 * Java讀取并下載網絡文件
 * @author Marydon
 * @createTime 2017年8月18日下午5:24:09
 * @updateTime
 * @Email:marydon2017@163.com
 * @version:1.0.0
 * @referenceLink
 * <a href="http://blog.csdn.net/xb12369/article/details/40543649/"> java 從網絡Url中下載文件</a>
 */
public class DownloadFromNetwork {
  /** 
   * 從網絡Url中下載文件 
   * @param urlStr 
   * @param fileName 
   * @param savePath 
   * @throws IOException 
   */ 
  public static void downLoadFromUrl(String urlStr,String fileName,String savePath) throws IOException{ 
    URL url = new URL(urlStr);  
    HttpURLConnection conn = (HttpURLConnection)url.openConnection();  
        //設置超時間為3秒 
    conn.setConnectTimeout(3*1000); 
    //防止屏蔽程序抓取而返回403錯誤 
    conn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)"); 
 
    //得到輸入流 
    InputStream inputStream = conn.getInputStream();  
    //獲取自己數組 
    byte[] getData = readInputStream(inputStream);   
 
    //文件保存位置 
    File saveDir = new File(savePath); 
    if(!saveDir.exists()){ 
      saveDir.mkdirs(); 
    } 
    File file = new File(saveDir+File.separator+fileName);   
    FileOutputStream fos = new FileOutputStream(file);    
    fos.write(getData);  
    if(fos!=null){ 
      fos.close();  
    } 
    if(inputStream!=null){ 
      inputStream.close(); 
    } 
 
    System.out.println("info:"+url+" download success");  
 
  } 
 
  /** 
   * 從輸入流中獲取字節數組 
   * @param inputStream 
   * @return 
   * @throws IOException 
   */ 
  public static byte[] readInputStream(InputStream inputStream) throws IOException {  
    byte[] buffer = new byte[1024];  
    int len = 0;  
    ByteArrayOutputStream bos = new ByteArrayOutputStream();  
    while((len = inputStream.read(buffer)) != -1) {  
      bos.write(buffer, 0, len);  
    }  
    bos.close();  
    return bos.toByteArray();  
  }  
 
  public static void main(String[] args) { 
    try{ 
      for (int i = 201; i <=520; i++) {
        downLoadFromUrl("https://cache.yisu.com/upload/information/20200623/121/112271.jpg",i + ".jpg","E:/Downloads/wallpaper/baiduSkin"); 
      }
    }catch (Exception e) { 
      // TODO: handle exception 
    } 
  } 
}

關于網絡文件怎么利用Java進行讀取并下載就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

达孜县| 建宁县| 乾安县| 方城县| 徐汇区| 哈巴河县| 禄丰县| 谷城县| 兴和县| 玛沁县| 山东省| 黄浦区| 湖南省| 泾川县| 安新县| 资兴市| 崇左市| 合水县| 五大连池市| 仁寿县| 平远县| 通江县| 革吉县| 滦南县| 清苑县| 精河县| 海晏县| 宜良县| 新乡市| 江源县| 龙江县| 永和县| 雅安市| 昆山市| 深州市| 遂溪县| 广德县| 秦皇岛市| 芦山县| 吉木乃县| 肥城市|