在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → Winfrom上传下载文件

Winfrom上传下载文件

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.14M
  • 下载次数:103
  • 浏览次数:1247
  • 发布时间:2016-04-03
  • 实例类别:C#语言基础
  • 发 布 人:sllfer136740996
  • 文件格式:.rar
  • 所需积分:5
 相关标签: 上传 文件 下载 WinFrom

实例介绍

以下程序在.NET2005,系统XP中测试通过:

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Net;

using System.IO;

 

namespace TQSystem.Com

{

    class UpDownLoadFile

    {

 

        /// <summary>

        /// WebClient上传文件至服务器(不带进度条)

        /// </summary>

        /// <param name="fileNameFullPath">要上传的文件(全路径格式)</param>

        /// <param name="strUrlDirPath">Web服务器文件夹路径</param>

        /// <returns>True/False是否上传成功</returns>

        public bool UpLoadFile(string fileNameFullPath, string strUrlDirPath)

        {

            //得到要上传的文件文件名

            string fileName = fileNameFullPath.Substring(fileNameFullPath.LastIndexOf("\\") 1);

            //新文件名由年月日时分秒及毫秒组成

            string NewFileName = DateTime.Now.ToString("yyyyMMddhhmmss")

                                        DateTime.Now.Millisecond.ToString()

                                        fileNameFullPath.Substring(fileNameFullPath.LastIndexOf("."));

            //得到文件扩展名

            string fileNameExt = fileName.Substring(fileName.LastIndexOf(".") 1);

            if (strUrlDirPath.EndsWith("/") == false) strUrlDirPath = strUrlDirPath "/";

            //保存在服务器上时,将文件改名(示业务需要)

            strUrlDirPath = strUrlDirPath NewFileName;

            // 创建WebClient实例

            WebClient myWebClient = new WebClient();

            myWebClient.Credentials = CredentialCache.DefaultCredentials;

            // 将要上传的文件打开读进文件流

            FileStream myFileStream = new FileStream(fileNameFullPath, FileMode.Open, FileAccess.Read);

            BinaryReader myBinaryReader = new BinaryReader(myFileStream);

            try

            {

                byte[] postArray = myBinaryReader.ReadBytes((int)myFileStream.Length);

                //打开远程Web地址,将文件流写入

                Stream postStream = myWebClient.OpenWrite(strUrlDirPath, "PUT");

                if (postStream.CanWrite)

                {

                    postStream.Write(postArray, 0, postArray.Length);

                }

                else

                {

                    //MessageBox.Show("Web服务器文件目前不可写入,请检查Web服务器目录权限设置!","系统提示",MessageBoxButtons.OK,MessageBoxIcon.Information);

                }

                postStream.Close();//关闭流

                return true;

            }

            catch (Exception exp)

            {

                //MessageBox.Show("文件上传失败:" exp.Message, "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Information);

                return false;

            }

        }

 

        /// <summary>

        /// 下载服务器文件至客户端(不带进度条)

        /// </summary>

        /// <param name="strUrlFilePath">要下载的Web服务器上的文件地址(全路径 如:http://www.dzbsoft.com/test.rar</param>

        /// <param name="Dir">下载到的目录(存放位置,机地机器文件夹)</param>

        /// <returns>True/False是否上传成功</returns>

        public bool DownLoadFile(string strUrlFilePath, string strLocalDirPath)

        {

            // 创建WebClient实例

            WebClient client = new WebClient();

            //被下载的文件名

            string fileName = strUrlFilePath.Substring(strUrlFilePath.LastIndexOf("/"));

            //另存为的绝对路径+文件名

            string Path = strLocalDirPath fileName;

            try

            {

                WebRequest myWebRequest = WebRequest.Create(strUrlFilePath);

            }

            catch (Exception exp)

            {

                MessageBox.Show("文件下载失败:" exp.Message, "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Information);

            }

            try

            {

                client.DownloadFile(strUrlFilePath, Path);

                return true;

            }

            catch (Exception exp)

            {

                MessageBox.Show("文件下载失败:" exp.Message, "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Information);

                return false;

            }

        }

 

 

        /// <summary>

        /// 下载带进度条代码(普通进度条)

        /// </summary>

        /// <param name="URL">网址</param>

        /// <param name="Filename">文件名</param>

        /// <param name="Prog">普通进度条ProgressBar</param>

        /// <returns>True/False是否下载成功</returns>

        public bool DownLoadFile(string URL, string Filename, ProgressBar Prog)

        {

            try

            {

                System.Net.HttpWebRequest Myrq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(URL); //URL地址得到一个WEB请求   

                System.Net.HttpWebResponse myrp = (System.Net.HttpWebResponse)Myrq.GetResponse(); //WEB请求得到WEB响应   

                long totalBytes = myrp.ContentLength; //WEB响应得到总字节数   

                Prog.Maximum = (int)totalBytes; //从总字节数得到进度条的最大值   

                System.IO.Stream st = myrp.GetResponseStream(); //WEB请求创建流(读)   

                System.IO.Stream so = new System.IO.FileStream(Filename, System.IO.FileMode.Create); //创建文件流(写)   

                long totalDownloadedByte = 0; //下载文件大小   

                byte[] by = new byte[1024];

                int osize = st.Read(by, 0, (int)by.Length); //读流   

                while (osize > 0)

                {

                    totalDownloadedByte = osize totalDownloadedByte; //更新文件大小   

                    Application.DoEvents();

                    so.Write(by, 0, osize); //写流   

                    Prog.Value = (int)totalDownloadedByte; //更新进度条   

                    osize = st.Read(by, 0, (int)by.Length); //读流   

                }

                so.Close(); //关闭流

                st.Close(); //关闭流

                return true;

            }

            catch

            {

                return false;

            }

        }

 

 

        /// <summary>

        /// 下载带进度条代码(状态栏式进度条)

        /// </summary>

        /// <param name="URL">网址</param>

        /// <param name="Filename">文件名</param>

        /// <param name="Prog">状态栏式进度条ToolStripProgressBar</param>

        /// <returns>True/False是否下载成功</returns>

        public bool DownLoadFile(string URL, string Filename, ToolStripProgressBar Prog)

        {

            try

            {

                System.Net.HttpWebRequest Myrq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(URL); //URL地址得到一个WEB请求   

                System.Net.HttpWebResponse myrp = (System.Net.HttpWebResponse)Myrq.GetResponse(); //WEB请求得到WEB响应   

                long totalBytes = myrp.ContentLength; //WEB响应得到总字节数   

                Prog.Maximum = (int)totalBytes; //从总字节数得到进度条的最大值   

                System.IO.Stream st = myrp.GetResponseStream(); //WEB请求创建流(读)   

                System.IO.Stream so = new System.IO.FileStream(Filename, System.IO.FileMode.Create); //创建文件流(写)   

                long totalDownloadedByte = 0; //下载文件大小   

                byte[] by = new byte[1024];

                int osize = st.Read(by, 0, (int)by.Length); //读流   

                while (osize > 0)

                {

                    totalDownloadedByte = osize totalDownloadedByte; //更新文件大小   

                    Application.DoEvents();

                    so.Write(by, 0, osize); //写流   

                    Prog.Value = (int)totalDownloadedByte; //更新进度条   

                    osize = st.Read(by, 0, (int)by.Length); //读流   

                }

                so.Close(); //关闭流   

                st.Close(); //关闭流   

                return true;

            }

            catch

            {

                return false;

            }

 

        }

 

    }

}


实例下载地址

Winfrom上传下载文件

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 0oppo0 发表于: 2016-12-01 11:04 23
你好,请问这个程序如何调试运行,我是新手哈。是否有服务器端的配置呢?

支持(0) 盖楼(回复)

发表评论

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

查看所有1条评论>>

小贴士

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

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

关于好例子网

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

;
报警