公司禁用用迅雷,禁用所有P2P协议的软件,自己写个断点续传的工具

简介: 目前仅支持HTTP协议 下一步的工作是支持FTP协议 再下一步的工作是对原始URL进行智能分析 发此文以抗议像吉日兄这样的总监或者老板   Code    public partial class Form1 : Form    {        public Form1()      ...

目前仅支持HTTP协议

下一步的工作是支持FTP协议

再下一步的工作是对原始URL进行智能分析

发此文以抗议像吉日兄这样的总监或者老板

 

img_1c53668bcee393edac0d7b3b3daff1ae.gif img_405b18b4b6584ae338e0f6ecaf736533.gif Code
    public partial class Form1 : Form
    {
        
public Form1()
        {
            InitializeComponent();            
        }
        
private void DownLoad()
        {
            XmlDocument xmlDoc 
= new XmlDocument();
            xmlDoc.Load(
"D:\\中转\\data.xml");
            XmlNodeList nodeList 
= xmlDoc.SelectSingleNode("data").ChildNodes;
            XmlElement xe 
= (XmlElement)nodeList.Item(nodeList.Count - 1);
            
if (xe.GetAttribute("is_finish").Equals("true"))
            {
                MessageBox.Show(
"none task in the list");
                
return;
            }
            
string StrFileName = "D:\\中转\\" + xe.GetAttribute("name"); 
            
string StrUrl = xe.GetAttribute("address");

            
long lStartPos = 0;
            System.IO.FileStream fs;
            
if (System.IO.File.Exists(StrFileName))
            {
                fs 
= System.IO.File.OpenWrite(StrFileName);
                lStartPos 
= fs.Length;
                fs.Seek(lStartPos, System.IO.SeekOrigin.Current); 
//移动文件流中的当前指针
            }
            
else
            {
                fs 
= new System.IO.FileStream(StrFileName, System.IO.FileMode.Create);
                lStartPos 
= 0;
            }
            
//打开网络连接
            try
            {
                System.Net.HttpWebRequest request 
= (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(StrUrl);
                
if (lStartPos > 0)
                    request.AddRange((
int)lStartPos); //设置Range值
                
//向服务器请求,获得服务器回应数据流
                System.IO.Stream ns = request.GetResponse().GetResponseStream();
                
byte[] nbytes = new byte[512];
                
int nReadSize = 0;
                nReadSize 
= ns.Read(nbytes, 0512);                
                
while (nReadSize > 0)
                {
                    fs.Write(nbytes, 
0, nReadSize);
                    nReadSize 
= ns.Read(nbytes, 0512);
                }
                fs.Close();
                ns.Close();
                EditNode();
                MessageBox.Show(
"Down Ok!");
            }
            
catch (Exception ex)
            {
                fs.Close();
                MessageBox.Show(
"Down Error!");
            }
        }
        
private void notifyIcon1_MouseClick(object sender, MouseEventArgs e)
        {
            XmlDocument xmlDoc 
= new XmlDocument();
            xmlDoc.Load(
"D:\\中转\\data.xml");
            XmlNodeList nodeList 
= xmlDoc.SelectSingleNode("data").ChildNodes;
            XmlElement xe 
= (XmlElement)nodeList.Item(nodeList.Count - 1);
            
string StrFileName = "D:\\中转\\" + xe.GetAttribute("name");
            FileInfo fi 
= new FileInfo(StrFileName);
            DialogResult dr 
= MessageBox.Show(thisstring.Format("already:{0}kb\nOK:exit\ncancel:continue", fi.Length / 1024), "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question,MessageBoxDefaultButton.Button2);
            
if (!dr.Equals(DialogResult.Cancel))
            {
                
this.Close();
                
this.Dispose();
            }
        }

        
private void button1_Click(object sender, EventArgs e)
        {
            
this.Hide();
            
if (!string.IsNullOrEmpty(textBox1.Text.Trim())&&!string.IsNullOrEmpty(textBox2.Text.Trim()))
            {
                InsertNode();
            }
            System.Threading.Thread obj 
= new System.Threading.Thread(new System.Threading.ThreadStart(this.DownLoad));
            
//设置为前台线程,即使主方法执行结束了我的线程仍在执行
            obj.IsBackground = true;
            obj.Start();
        }
        
private void EditNode()
        {
            XmlDocument xmlDoc 
= new XmlDocument();
            xmlDoc.Load(
"D:\\中转\\data.xml");
            XmlNodeList nodeList 
= xmlDoc.SelectSingleNode("data").ChildNodes;
            XmlElement xe 
= (XmlElement)nodeList.Item(nodeList.Count - 1);
            xe.SetAttribute(
"is_finish""true");
            xmlDoc.Save(
"D:\\中转\\data.xml");//保存。
        }
        
private void InsertNode()
        {
            XmlDocument xmlDoc 
= new XmlDocument();
            xmlDoc.Load(
"D:\\中转\\data.xml");
            XmlNode root 
= xmlDoc.SelectSingleNode("data");
            XmlElement xe1 
= xmlDoc.CreateElement("file");
            xe1.SetAttribute(
"name", textBox1.Text.Trim());
            xe1.SetAttribute(
"address", textBox2.Text.Trim());
            xe1.SetAttribute(
"is_finish""false");
            root.AppendChild(xe1);
            xmlDoc.Save(
"D:\\中转\\data.xml");
        }
目录
相关文章
|
开发者
Mac 系统偏好设置 安全性与隐私 没有“任何来源” 选项解决办法
Mac 系统偏好设置 安全性与隐私 没有“任何来源” 选项解决办法
3880 0
|
5月前
|
安全 数据安全/隐私保护 网络虚拟化
win10 无需下载软件,不用向日葵、不用todesck也能快速远程!而且密码会自动定时更新!25
【7月更文挑战第25天】在Windows 10中,快速助手是内置的远程协助工具,用于无第三方软件情况下的远程支持。用户需通过搜索打开应用,提供帮助者先登录微软账号获取安全代码,然后被帮助者输入该代码以建立连接。连接有10分钟有效期,需在时间内输入。连接建立后,提供帮助者需请求控制权,经被帮助者同意后才能操作对方电脑。整个过程增强了安全性,但流程与向日葵、Todesk等第三方工具不同。
97 7
|
7月前
|
存储 安全 数据安全/隐私保护
Obsidian笔记软件无公网远程同步数据到群辉Webdav
Obsidian笔记软件无公网远程同步数据到群辉Webdav
142 1
|
7月前
|
安全 定位技术 数据安全/隐私保护
FileZilla软件的下载、服务器站点配置与数据传输方法
FileZilla软件的下载、服务器站点配置与数据传输方法
217 1
|
Windows
超简单一步解决Win10系统无法访问网页,但软件能够联网的问题
超简单一步解决Win10系统无法访问网页,但软件能够联网的问题
129 0
|
网络协议
命令行工具 - 多支持多运营商的 `DNS 命令行` 客户端。
命令行工具 - 多支持多运营商的 `DNS 命令行` 客户端。
139 0
命令行工具 - 多支持多运营商的 `DNS 命令行` 客户端。
关闭迅雷更新到新版本的提示
关闭迅雷更新到新版本的提示
719 0
关闭迅雷更新到新版本的提示