C#本地文件下载以及FTP文件服务下载(以Pdf文件为例)
一、C#实现本地文件下载
1、文件下载的路径 文件名称 以及文件下载之后要放的位置 这三个变量是必须要的
2、定义以下四个对象:
FileWebRequest ftpWebRequest = null;
FileWebResponse ftpWebResponse = null;
Stream ftpResponseStream = null;
FileStream outputStream = null;
3、创建文件下载存放位置的路径(不需要手动创建,如果路径存在就创建 不存在就不创建)
Directory.CreateDirectory(LocalFolder);//创建文件夹名称
* 这里提一点 Path.Combine()这个就是文件路径拼接的函数,会自动判断,在需要的文件加 \\
比如 string filePath= Path.Combine(“D:”,“test”,"download"); // filePath="D:\\test\download";
4、 然后执行以下代码 即可完成文件下载
ftpWebRequest = (FileWebRequest)FileWebRequest.Create(new Uri(uri));
ftpWebRequest.Method = WebRequestMethods.Ftp.DownloadFile;
ftpWebResponse = (FileWebResponse)ftpWebRequest.GetResponse();
ftpResponseStream = ftpWebResponse.GetResponseStream();
long contentLength = ftpWebResponse.ContentLength;
int bufferSize = 2048;
byte[] buffer = new byte[bufferSize];
int readCount;
readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
while (readCount > 0)
{
outputStream.Write(buffer, 0, readCount);
readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
}
5、代码写完之后要思考,下载文件的时候如何出现异常 这时在整个代码加个 Try{} catch{}
具体代码如下:
public static void Main(string[] args)
{
TestFile tf = new TestFile();
tf.fileDownload("D:/testFile/", "下载ftp文件.txt", "C:/Users/17/Desktop/文件", "下载ftp文件.txt", DateTime.Now.ToShortDateString());
} /// <summary>
/// 下载文件
/// </summary>
/// <param name="localPath">本地文件地址(没有文件名)</param>
/// <param name="localFileName">本地文件名</param>
/// <param name="ftpPath">下载的ftp的路径</param>
/// <param name="ftpFileName">下载的ftp的文件名</param>
public bool fileDownload(string localPath, string localFileName, string ftpPath, string ftpFileName, string date)
{
bool success = false;
//FtpWebResponse ftpWebResponse = null;
FileWebRequest ftpWebRequest = null;
FileWebResponse ftpWebResponse = null;
Stream ftpResponseStream = null;
FileStream outputStream = null;
try
{
//string date = DateTime.Now.ToShortDateString().ToString();//获取系统时间
string date1 = date.Replace("/", "");//winods 中文件命名不能有 / 去掉指定字符串 /
//localPath = localPath + date1 + "/";//拼接路径 localPath=Path.Combine(localPath,date1)
Directory.CreateDirectory(localPath);//创建文件夹名称
outputStream = new FileStream(localPath + localFileName, FileMode.Create);//创建文件
string uri = ftpRootURL + ftpPath + "/" + ftpFileName;//拼接目标文件路径 string uri= Path.Combine(ftpRootURL,ftpPath,ftpFileName);
ftpWebRequest = (FileWebRequest)FileWebRequest.Create(new Uri(uri));
//ftpWebRequest1.UseBinary = true;
ftpWebRequest.Method = WebRequestMethods.Ftp.DownloadFile;
ftpWebResponse = (FileWebResponse)ftpWebRequest.GetResponse();
ftpResponseStream = ftpWebResponse.GetResponseStream();
long contentLength = ftpWebResponse.ContentLength;
int bufferSize = 2048;
byte[] buffer = new byte[bufferSize];
int readCount;
readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
while (readCount > 0)
{
outputStream.Write(buffer, 0, readCount);
readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
}
success = true;
}
catch (Exception e)
{ DirectoryInfo folder = new DirectoryInfo(localPath);
StreamWriter log = new StreamWriter(localPath + "/" + DateTime.Now.ToShortDateString().ToString().Replace("/", "") + ".txt", true);
log.WriteLine("发生异常时间:" + System.DateTime.Now.ToShortTimeString().ToString());
log.WriteLine("发生异常信息:" + e.Message);
log.WriteLine("发送异常对象:" + e.Source);
log.WriteLine("调用堆栈:" + e.StackTrace.Trim());
log.WriteLine("触动方法:" + e.TargetSite);
log.WriteLine(" " + e.HResult);
log.WriteLine("数据对象" + e.Data);
log.WriteLine("____________________________________________________________");
log.WriteLine();
log.Close();
success = false;
}
finally
{
if (outputStream != null)
{
outputStream.Close();
}
if (ftpResponseStream != null)
{
ftpResponseStream.Close();
} if (ftpWebResponse != null)
{
ftpWebResponse.Close();
}
}
return success;
}
二、 FTP 服务文件下载
这个功能其实和本地文件下载一样,只需要加几点即可
1、FTP服务的地址;
具体代码如下
private string ftpIP = "**********";
2、FTP文件服务的登录账号以及密码
具体代码如下
private string ftpName = "*********";
private string ftpPassword = "******";
private string ftpRootURL = string.Empty;
FtpWebRequest reqFTP;
3、获取FTP服务上的文件名称、FTP文件服务需要下载之后存放的路径以及下载功能的实现
FtpWebRequest ftpWebRequest = null;
FtpWebResponse ftpWebResponse = null;
Stream ftpResponseStream = null;
FileStream outputStream = null;
try
{
localFilePath = Path.Combine(localFilePath, ftpFileNameTime);
Directory.CreateDirectory(localFilePath);//创建文件夹名称
outputStream = new FileStream(Path.Combine(localFilePath, fileName), FileMode.Create);
string uri = Path.Combine(ftpRootURL, ftpIP, fileName);
ftpWebRequest = (FtpWebRequest)FileWebRequest.Create(new Uri(uri));
ftpWebRequest.Credentials = new NetworkCredential(ftpName, ftpPassword);//登录ftp
ftpWebRequest.UseBinary = true;
ftpWebRequest.Method = WebRequestMethods.Ftp.DownloadFile;
ftpWebResponse = (FtpWebResponse)ftpWebRequest.GetResponse();
ftpResponseStream = ftpWebResponse.GetResponseStream();
long contentLength = ftpWebResponse.ContentLength;
int bufferSize = 2048;
byte[] buffer = new byte[bufferSize];
int readCount;
readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
while (readCount > 0)
{
outputStream.Write(buffer, 0, readCount);
readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
}
}
catch (Exception ex)
{ MessageBox.Show(ex.Message)
/*MessageBox.Show(ex.Message + "是否下载日志文件", "发送错误!", MessageBoxButtons.OKCancel);
//点击确定 就执行下载日志文件,不然就不执行
if (dr == DialogResult.OK)
{
WriteLog log = new WriteLog();
log.Write_log(ex.Message);
}*/
}
finally
{
if (outputStream != null)
{
outputStream.Close();
}
if (ftpResponseStream != null)
{
ftpResponseStream.Close();
} if (ftpWebResponse != null)
{
ftpWebResponse.Close();
}
}
5、具体代码如下:
namespace FtpDownLoad
{
public class ftpFileDownload
{ private string ftpIP = "*************";
private string ftpName = "2*******";
private string ftpPassword = "*********";
private string ftpRootURL = string.Empty;
FtpWebRequest reqFTP; public static void Main(string[] args)
{ ftpFileDownload ftpDown = new ftpFileDownload();
ftpDown.GetFileList("D:\testFile","37.pdt","20190703"); } /// <summary>
/// 文件下载
/// </summary>
/// <param name="localFilePath">下载路径</param>
/// <param name="fileName">下载的名称</param>
/// <param name="ftpFilePath">FTP路径</param>
/// <param name="ftpFileNameTime">FTP文件的修改时间</param> public void FtpDownLoadFile(string localFilePath, string fileName, string ftpFileNameTime)
{
FtpWebRequest ftpWebRequest = null;
FtpWebResponse ftpWebResponse = null;
Stream ftpResponseStream = null;
FileStream outputStream = null;
try
{
localFilePath = Path.Combine(localFilePath, ftpFileNameTime);
Directory.CreateDirectory(localFilePath);//创建文件夹名称
outputStream = new FileStream(Path.Combine(localFilePath, fileName), FileMode.Create);
string uri = Path.Combine(ftpRootURL, ftpIP, fileName);
ftpWebRequest = (FtpWebRequest)FileWebRequest.Create(new Uri(uri));
ftpWebRequest.Credentials = new NetworkCredential(ftpName, ftpPassword);//登录ftp
ftpWebRequest.UseBinary = true;
ftpWebRequest.Method = WebRequestMethods.Ftp.DownloadFile;
ftpWebResponse = (FtpWebResponse)ftpWebRequest.GetResponse();
ftpResponseStream = ftpWebResponse.GetResponseStream();
long contentLength = ftpWebResponse.ContentLength;
int bufferSize = 2048;
byte[] buffer = new byte[bufferSize];
int readCount;
readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
while (readCount > 0)
{
outputStream.Write(buffer, 0, readCount);
readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
}
}
catch (Exception ex)
{ MessageBox.Show(ex.Message);
/* DialogResult dr = MessageBox.Show(ex.Message + "是否下载日志文件", "发送错误!", MessageBoxButtons.OKCancel);
//点击确定 就执行下载日志文件,不然就不执行
if (dr == DialogResult.OK)
{
WriteLog log = new WriteLog();
log.Write_log(ex.Message);
}*/
}
finally
{
if (outputStream != null)
{
outputStream.Close();
}
if (ftpResponseStream != null)
{
ftpResponseStream.Close();
} if (ftpWebResponse != null)
{
ftpWebResponse.Close();
}
}
}
如有疑问 可以往773408602@qq.com发邮件,我会第一时间给你解答的
C#本地文件下载以及FTP文件服务下载(以Pdf文件为例)的更多相关文章
- 用DOS批处理实现FTP自动上传、下载、清理文件
用DOS批处理实现FTP自动上传.下载.清理文件 最近好像特别的忙,好久没来写点东西了,今天写了一个利用批处理程序完成FTP自动上传.下载.清理文件的程序.赶紧 记录下来,以备日后之用.功能介绍:自动 ...
- IOS下载查看PDF文件(有下载进度)
IOS(object-c) 下载查看 PDF 其实还是蛮容易操作的.在下载前,首先要把 IOS 可以保存文件的目录给过一遍: IOS 文件保存目录 IOS 可以自定义写入的文件目录,是很有限的,只能是 ...
- word和.txt文件转html 及pdf文件, 使用poi jsoup itext心得
word和.txt文件转html 及pdf文件, 使用poi jsoup itext心得本人第一次写博客,有上面不足的或者需要改正的希望大家指出来,一起学习交流讨论.由于在项目中遇到了这一个问题,在 ...
- PDF文件怎么修改,PDF文件编辑方法
PDF文件是一种独特的文件,在日常办公中已经成为我们使用最广泛的电子文档格式.在使用PDF文件中会遇到PDF文件有错区的时候,再从新制作一个PDF文件会比较麻烦,只能通过工具来对PDF文件进行修改,这 ...
- 轻松将CAD文件转为加密的PDF文件
对于从事设计相关工作的朋友来说,CAD肯定再熟悉不过了.一些有特殊要求的CAD文件,需要将其转换成为PDF文件以方便保存.传输.打印,同时还得保证设计图稿的安全性,所以将CAD文件直接转为加密的PDF ...
- C#将制定文件夹下的PDF文件合并成一个并输出至指定路径
/// <summary> /// 将源路径下的PDF合并至目标路径下 /// </summary> /// <param name="SourcePath&q ...
- 【文件】java生成PDF文件
package test; import java.awt.Color; import java.io.FileOutputStream; import org.junit.Test; import ...
- 递归找到多级文件夹中所有pdf文件的py程序
因个人需要,写了一个可以递归找到多级文件夹中所有pdf的小程序,发布出来供有需要的人参考或使用. import os import re import shutil from os.path impo ...
- 从 FTP 服务器上下载并保存文件
本例演示如何运用 C# 中的 FtpWebRequest 等对象从 FTP 服务器上获取文件,并结合 Stream 对象中的方法来保存下载的文件: using System; using System ...
随机推荐
- 我是怎样测试Java类的线程安全性的
线程安全性是Java等语言/平台中类的一个重要标准,在Java中,我们经常在线程之间共享对象.由于缺乏线程安全性而导致的问题很难调试,因为它们是偶发的,而且几乎不可能有目的地重现.如何测试对象以确保它 ...
- 想实现多人协作的“在线Excel”?真没那么简单
本文由葡萄城技术团队原创并首发 转载请注明出处:葡萄城官网,葡萄城为开发者提供专业的开发工具.解决方案和服务,赋能开发者. Excel是我们办公中常用的工具 ,它几乎能为我们处理大部分数据,友好的交互 ...
- 机器学习-Python 01
机器学习中最常用最流行的语言工具现阶段应该是Python, 这篇文章主要介绍一些常用的Python语法知识.本篇博文适合那些有其他语言基础的程序员们,如果一点基础都没有,我建议先跳过.博主以前是做移动 ...
- 给各位PHP程序员十点未来的建议
PHP 从诞生到现在已经有20多年历史,从Web时代兴起到移动互联网退潮,互联网领域各种编程语言和技术层出不穷, Node.js . GO . Python 不断地在挑战 PHP 的地位.这些技术的推 ...
- es6 babel 安装以及使用
1,安装好node(需要使用npm包管理工具) 2,在本地项目路径下npm init,格式化成功后会在项目下生成一个配置文件package.json 3,本地安装bable npm install - ...
- 使用@media实现移动端使用@2x,@3x切换
/*dpr比值为1的css代码 */ div{ width:300px; height:200px; background:url(img/button@1x.png) ; } /* dpr比值为 ...
- HDU5470 Typewriter (SAM+单调队列优化DP)
Typewriter Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Tota ...
- Django 2.0.7 使用小知识
Django 2.0.3 使用小知识 运行环境: Python 3.6.4 Django 2.0.7 Django Admin中model显示为中文 定义model时,定义一个Meta对象,设置需要显 ...
- .NET Core RSA 指南与增强扩展 RSAExtensions
一. 前言 RSA 作为最常用的非对称加密算法,在我们的实际使用中还是比较常见的,特别是对接支付十有八九都会遇到,或者是其他需要数据安全的业务场景.在 .NET Framework 以及 .NET C ...
- IIS配置svc(IIS8中添加WCF支持几种方法小结)
方法一 最近在做Silverlight,Windows Phone应用移植到Windows 8平台,在IIS8中测试一些传统WCF服务应用,发现IIS8不支持WCF服务svc请求,后来发现IIS8缺少 ...