• 大小: 0.46M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-27
  • 语言: C#
  • 标签: IP  C#  c  

资源简介

动态抓取IPC#实现

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.IO;
using System.Text.Regularexpressions;
using System.Collections;
using System.Threading;

namespace Proxy
{
    public partial class Form1 : Form
    {
        private DataTable dt = new DataTable();
        private Queue urlList = new Queue();
        private Queue ipList = new Queue();
        private delegate void addRowDelegate(object[] obj);//定义委托
        private delegate void updateRowDelegate(string str);

        Thread myThread;
        private int id = 0;
        private int currentIndex = 0;

        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender EventArgs e)
        {
            myThread = new Thread(downLoad);//实例化线程
            myThread.Start();//启动线程

           
 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件          0  2009-09-06 15:36  Proxy\Proxy\bin\Debug\ffff

     文件       1374  2009-09-06 15:23  Proxy\Proxy\bin\Debug\IPAvailable.txt

     文件       1662  2009-09-06 17:28  Proxy\Proxy\bin\Debug\Proxy.application

     文件      61440  2009-09-06 17:28  Proxy\Proxy\bin\Debug\Proxy.exe

     文件       2115  2009-09-06 17:28  Proxy\Proxy\bin\Debug\Proxy.exe.manifest

     文件      50688  2009-09-06 17:28  Proxy\Proxy\bin\Debug\Proxy.pdb

     文件       5339  2009-09-06 17:28  Proxy\Proxy\bin\Debug\Proxy.publish\Proxy.application

     文件      61440  2009-09-06 17:28  Proxy\Proxy\bin\Debug\Proxy.publish\Proxy_1_0_0_3\Proxy.exe.deploy

     文件       5742  2009-09-06 17:28  Proxy\Proxy\bin\Debug\Proxy.publish\Proxy_1_0_0_3\Proxy.exe.manifest

     文件     423848  2009-09-06 17:28  Proxy\Proxy\bin\Debug\Proxy.publish\setup.exe

     文件       1455  2009-09-06 17:23  Proxy\Proxy\bin\Debug\Proxy.vshost.application

     文件       5632  2005-11-11 22:25  Proxy\Proxy\bin\Debug\Proxy.vshost.exe

     文件       2115  2009-09-06 17:23  Proxy\Proxy\bin\Debug\Proxy.vshost.exe.manifest

     文件      14688  2009-09-06 17:36  Proxy\Proxy\Form1.cs

     文件      13183  2009-09-06 15:57  Proxy\Proxy\Form1.Designer.cs

     文件      47845  2009-09-06 15:57  Proxy\Proxy\Form1.resx

     文件       1662  2009-09-06 17:28  Proxy\Proxy\obj\Debug\Proxy.application

     文件        842  2009-09-06 15:59  Proxy\Proxy\obj\Debug\Proxy.csproj.GenerateResource.Cache

     文件      61440  2009-09-06 17:28  Proxy\Proxy\obj\Debug\Proxy.exe

     文件       2115  2009-09-06 17:28  Proxy\Proxy\obj\Debug\Proxy.exe.manifest

     文件      25792  2009-09-06 15:59  Proxy\Proxy\obj\Debug\Proxy.Form1.resources

     文件      50688  2009-09-06 17:28  Proxy\Proxy\obj\Debug\Proxy.pdb

     文件        180  2009-09-06 15:40  Proxy\Proxy\obj\Debug\Proxy.Properties.Resources.resources

     文件       1380  2009-09-06 17:28  Proxy\Proxy\obj\Proxy.csproj.FileListAbsolute.txt

     文件        464  2009-09-05 20:03  Proxy\Proxy\Program.cs

     文件       1158  2009-09-05 20:02  Proxy\Proxy\Properties\AssemblyInfo.cs

     文件       2866  2009-09-05 20:03  Proxy\Proxy\Properties\Resources.Designer.cs

     文件       5612  2009-09-05 20:03  Proxy\Proxy\Properties\Resources.resx

     文件       1090  2009-09-05 20:03  Proxy\Proxy\Properties\Settings.Designer.cs

     文件        249  2009-09-05 20:02  Proxy\Proxy\Properties\Settings.settings

............此处省略28个文件信息

评论

共有 条评论