在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 百度网盘搜索工具源码

百度网盘搜索工具源码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.14M
  • 下载次数:81
  • 浏览次数:1230
  • 发布时间:2018-04-30
  • 实例类别:C#语言基础
  • 发 布 人:crazycode
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 百度 网盘 源码 工具 搜索

实例介绍

【实例简介】

【实例截图】

from clipboard

【核心代码】

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Threading;
using System.IO;
using System.Diagnostics;
using System.Reflection;

namespace BaiduDiskSearcher
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }
        WebHandler handler;

        private void buttonSearch_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(this.textBoxKeyword.Text))
            {
                MessageBox.Show("关键字不能为空!请重新输入!", "信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }
            if (textBoxKeyword.Text.CheckLegalFileName())
            {
                MessageBox.Show("关键字含有非法字符!请重新输入!", "信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }

            handler = new WebHandler($"http://m.panduoduo.net/s/name/{textBoxKeyword.Text}");
            handler.PageShown  = Handler_PageShown;
            handler.ItemShown  = Handler_ItemShown;
            dataTable = new ItemDataTable();
            dataGridView.DataSource = dataTable.GetItems();
            labelCount.Text = "";
            progressBar.Value = 0;
            cts = new CancellationTokenSource();
            buttonSearch.Enabled = false;
            buttonStop.Enabled = true;
            Task.Factory.StartNew(() => 
            {
                handler.Handle();
                InvokeToForm(() =>
                {
                    if(!cts.IsCancellationRequested) labelCount.Text = "已完成";
                    buttonSearch.Enabled = true;
                    buttonStop.Enabled = false;
                });
            });
        }

        private void Handler_PageShown(object sender, PageEventArgs e)
        {
            InvokeToForm(() =>
            {
                progressBar.Maximum = e.Page.TotalNumber;
            });
        }
        ItemDataTable dataTable = new ItemDataTable();
        CancellationTokenSource cts ;
        int rowIndex;
        private void Handler_ItemShown(object sender, ItemEventArgs e)
        {
            InvokeToForm(() => 
            {
                rowIndex = dataTable.Add(e.Item);
                progressBar.Value = rowIndex;
                if (rowIndex != progressBar.Maximum)
                {
                    labelCount.Text = $"{rowIndex}/{progressBar.Maximum}";
                }
                e.Cancel = cts.IsCancellationRequested;
                if (e.Cancel)
                {
                    labelCount.Text = "已取消";
                }
            });
        }

        private void InvokeToForm(Action action)
        {
            this.Invoke(action);
        }

        private void buttonStop_Click(object sender, EventArgs e)
        {
            cts?.Cancel();
            buttonSearch.Enabled = true;
            buttonStop.Enabled = false;
        }

        private void buttonExport_Click(object sender, EventArgs e)
        {
            if (dataGridView.Rows.Count == 0) return;
            using (SaveFileDialog dialog = new SaveFileDialog())
            {
                dialog.Filter = "Excel文件(*.csv)|*.csv";
                dialog.FileName = textBoxKeyword.Text;
                if(dialog.ShowDialog() == DialogResult.OK)
                {
                    StringBuilder temp = new StringBuilder();
                    for (int i = 0 ;i< this.dataGridView.Columns.Count - 1;i  )
                    {
                        if(i != this.dataGridView.Columns.Count - 2)
                        {
                            temp.Append(this.dataGridView.Columns[i].HeaderText   ",");
                        }
                        else
                        {
                            temp.Append(this.dataGridView.Columns[i].HeaderText   "\r\n");
                        }
                    }
                    Item[] items = dataTable.GetItems(out int[] counts);
                    for(int i = 0;i<items.Length; i  )
                    {
                        temp.Append(counts[i]   ","   items[i].FileName.Replace(",", ",")   ","   items[i].FileNameExt   ","  
                           items[i].Type   ","   items[i].Time  ","   items[i].Size   ","   items[i].Sharer   ","   items[i].Site   "\r\n");
                    }
                    StreamWriter writer = new StreamWriter(dialog.FileName,false,Encoding.UTF8);
                    writer.Write(temp.ToString());
                    writer.Close();
                    MessageBox.Show("导出数据成功!", "信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
        }
    
        private void 复制文件名ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (currItem.FileNameExt != null)
            {
                Clipboard.SetText(currItem.FileName   "."   currItem.FileNameExt);
            }
            else
            {
                Clipboard.SetText(currItem.FileName);
            }
        }

        Item currItem;
        private void contextMenuStrip_Opening(object sender, CancelEventArgs e)
        {
            if (this.dataGridView.CurrentRow != null && this.dataGridView.CurrentRow.Index != -1)
            {
                contextMenuStrip.Enabled = true;
                if(!buttonSearch.Enabled)
                {
                    清空ToolStripMenuItem.Enabled = false;
                }
                else
                {
                    清空ToolStripMenuItem.Enabled = true;
                }
                currItem = ((Item)((DataRowView)this.dataGridView.Rows[this.dataGridView.CurrentRow.Index].DataBoundItem).Row.ItemArray[8]);
            }
            else
            {
                contextMenuStrip.Enabled = false;
            }
        }

        private void 打开网盘地址ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (currItem.Site != null)
            {
                Process.Start(currItem.Site);
            }
        }

        private void 复制网盘地址ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (currItem.Site != null)
            {
                Clipboard.SetText(currItem.Site);
            }
        }

        private void 打开分享者主页ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (currItem.SharerSite != null)
            {
                Process.Start(currItem.SharerSite);
            }
        }

        private void 复制分享者主页ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (currItem.SharerSite != null)
            {
                Clipboard.SetText(currItem.SharerSite);
            }
        }

        private void 清空ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            for(int i= this.dataGridView.Rows.Count-1; i>=0; i--)
            {
                this.dataGridView.Rows.RemoveAt(i);
            }
            labelCount.Text = "";
            progressBar.Value = 0;
        }

        private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            if(MessageBox.Show("确定要退出吗?","信息",MessageBoxButtons.YesNo,MessageBoxIcon.Question)== DialogResult.No)
            {
                e.Cancel = true;
            }
        }

        private void buttonAbout_Click(object sender, EventArgs e)
        {
            MessageBox.Show($"百度网盘搜索工具\r\n版本:{Assembly.GetExecutingAssembly().GetName().Version.ToString()}\r\n作者WeChat:cnxycn\r\nEmail:cnc46@qq.com","信息",MessageBoxButtons.OK,MessageBoxIcon.Information);
        }

        private void textBoxKeyword_KeyDown(object sender, KeyEventArgs e)
        {
            if(e.KeyData == Keys.Enter)
            {
                buttonSearch.PerformClick();
            }
        }

        private void dataGridView_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            if(e.RowIndex != -1)
            {
                Item item = ((Item)((DataRowView)this.dataGridView.Rows[this.dataGridView.CurrentRow.Index].DataBoundItem).Row.ItemArray[8]);
                Process.Start(item.Site);
            }
        }

        private void MainForm_Load(object sender, EventArgs e)
        {
            dataGridView.AutoGenerateColumns = false;
            labelVersion.Text = $"版本:{Assembly.GetExecutingAssembly().GetName().Version.ToString()}";
            textBoxKeyword.Focus();
        }
    }
}

网友评论

第 1 楼 RoOking 发表于: 2018-09-20 16:06 35
编译报错 无法通过编译

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警