基于C#的百度圖片批量下載工具

jopen 9年前發布 | 897 次閱讀 C#

    using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;

namespace 圖片下載器 {  
    public partial class Form1 : Form {  
        private string dir;  
        public Form1() {  
            Control.CheckForIllegalCrossThreadCalls = false;//這種方法不推薦使用,即不檢查跨線程操作,應該使用委托的  
            InitializeComponent();  
        }  

        private void butSelect_Click(object sender , EventArgs e) {  
            FolderBrowserDialog dlg = new FolderBrowserDialog();  
            if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK) {  
                textDir.Text = dlg.SelectedPath;  

            }  
        }  
        public static int pagecount = 1;  
        private void Showpages() {  
            this.textShow.AppendText("目前正在下載第" + pagecount + "頁\n");  
        }  
        private void butStart_Click(object sender , EventArgs e) {  
            string key = textKeyWords.Text;  
            if (string.IsNullOrEmpty(key)) {//檢測關鍵字  
                MessageBox.Show("請輸入關鍵詞!");  
                return;  
            }  
            if (string.IsNullOrEmpty(textDir.Text)) {//檢測路徑  
                MessageBox.Show("請選擇路徑!");  
                return;  
            }  
            dir = textDir.Text;  
            if (!dir.EndsWith("\\")) {  
                dir = dir + "\\";  
            }  
            Thread thread = new Thread(() => {//啟動一個新線程  
                process(key);  
            });  
            thread.Start();//線程啟動  
        }  

        private void process(string key) {  
            int count = (int)numericUpDown.Value;//請求的頁面數量  
            for (int i = 0 ; i < count ; i++) {  
                pagecount = i + 1;  
                Showpages();  
                HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://image.baidu.com/search/avatarjson?tn=resultjsonavatarnew&ie=utf-8&word=" + Uri.EscapeUriString(key) + "&cg=girl&pn=" + (i + 1) * 60 + "&rn=60&itg=0&z=0&fr=&width=&height=&lm=-1&ic=0&s=0&st=-1&gsm=360600003c");  
                using (HttpWebResponse res = (HttpWebResponse)req.GetResponse()) {  
                    if (res.StatusCode == HttpStatusCode.OK) {  
                        using (Stream stream = res.GetResponseStream()) {  
                            try {  
                                download(stream);  
                            } catch (Exception e) {  
                                textShow.BeginInvoke(new Action(() => {  
                                    textShow.AppendText(e.Message + Environment.NewLine);  
                                }));  
                            }  
                        }  
                    } else {  
                        MessageBox.Show("獲取第" + i + "頁失敗!" + res.StatusCode);  
                    }  
                }  
            }  
        }  

        private void download(Stream stream) {  
            using (StreamReader reader = new StreamReader(stream)) {  
                string json = reader.ReadToEnd();  
                JObject objRoot = (JObject)JsonConvert.DeserializeObject(json);  
                JArray imgs = (JArray)objRoot["imgs"];  
                for (int j = 0 ; j < imgs.Count ; j++) {  
                    JObject img = (JObject)imgs[j];  
                    string objUrl = (string)img["objURL"];//http://hibiadu....../1.jpg  
                    // textShow.AppendText(objUrl + Environment.NewLine);  
                    //保存的路徑是:destDir;  
                    try {  
                        DownloadImage(objUrl);//避免一個方法中的代碼過于復雜  
                    } catch (Exception ex) {  
                        //子線程的代碼中操作界面控件要使用BeginInvoke  
                        textShow.BeginInvoke(new Action(() => {  
                            textShow.AppendText(ex.Message + Environment.NewLine);  
                        }));  
                    }  
                }  
            }  
        }  
        private void DownloadImage(string objUrl) {  
            //得到保存的路徑  
            string path = Path.Combine(dir , Path.GetFileName(objUrl));  
            HttpWebRequest req = (HttpWebRequest)WebRequest.Create(objUrl);  
            req.Referer = "http://image.baidu.com/";//欺騙網站服務器這是從百度圖片發出的  
            using (HttpWebResponse res = (HttpWebResponse)req.GetResponse()) {  
                if (res.StatusCode == HttpStatusCode.OK) {  
                    using (Stream stream = res.GetResponseStream())  
                    using (Stream filestream = new FileStream(path , FileMode.Create)) {  
                        stream.CopyTo(filestream);  
                    }  
                } else {  
                    throw new Exception("下載失敗" + res.StatusCode);  
                }  
            }  
        }  
    }  
}  </pre> 


百度網盤下載: http://pan.baidu.com/s/1kT3YzXl密碼: gafi

來自:http://blog.csdn.net/jtahstu/article/details/48109555

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!