分类
标签
.NET 9008 adb android apt asp.net ASP.NET Core audio bug C c++ C++ chrome cmd csharp CSharp css css3 debian debug dotnet dotnet Framework dpkg GDI&GDI+ gdi&gdi+ golang graphics html html5 http java javascript json kali linux linux mci microsoft minimap MSBuild mysql OpenCV PInvoke powershell python QQ rust shell speex sql tutorial ubuntu ui unity vb.net visual studio Visual Studio web Web win32 winapi windows winform WinForm wpf WPF xaml xfce 列表 刷机 前端 加密 反射 反编译 可视化 图像处理 多线程 字符串 安卓 实例 局域网 幻影坦克 库 开发语言 异步 微信 手册 手机 接口 摘要 救砖 数字签名 数字证书 数字音频 数据库 桌面程序 游戏 游戏引擎 源码 爬虫 玩游戏 电脑硬件 笔记 算法 类库 线性代数 编程语言 网络 脚本语言 计算机图形学 计算机基础 设计模式 语音编解码 运维 进制 面向对象编程 音频 音频编码解码
213 字
1 分钟
C# 从网络上下载文件
之前一直不理解如何是从网络上下载文件的…自己试了试懂了
FileStream file = File.CreatWrite(filePath); // 创建文件
WebRequest.Creat(url).GetResponse().GetResponseStream().CopyTo(file); // 创建WebRequest对象,获取响应,获取响应流,将响应流写入到文件流
file.Close(); //关闭文件
嗯,这种简洁的代码最喜欢了 (虽然简洁…但是没人愿意看的hhh)
或者也可以写成函数
bool DownloadFile(string url, string toDirectory, string fileName, int timeout = 2000) //返回值是是否下载成功
{
string PathCombine(string path1,string path2) //合成路径
{
if (path1.EndsWith("\\"))
{
path1 = path1.Substring(0, path1.Length - 1);
}
if (path2.StartsWith("\\"))
{
path2 = path2.Substring(1);
}
return path1 + "\\" + path2;
}
if(!Directory.Exists(toDirectory))
{
Directory.CreatDirectory(toDirectory);
}
FileStream file = File.OpenWrite(fileName);
WebRequest request = WebRequest.Creat(url);
request.Timeout = timeout; //设置请求超时为函数参数
try
{
request.GetResponse().GetResponseStream().CopyTo(file);
}
catch
{
return false;
}
file.Close();
return true;
嗯,这样好了一些,因为设置了请求超时