日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

警惕使用WebClient.DownloadFile(string uri,string filePath)方法

發(fā)布時間:2025/3/13 编程问答 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 警惕使用WebClient.DownloadFile(string uri,string filePath)方法 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
警惕使用WebClient.DownloadFile(string uri,string filePath)方法 原文:警惕使用WebClient.DownloadFile(string uri,string filePath)方法

WebClient.DownloadFile(string uri,string filePath)方法用來請求一個url,并將請求內(nèi)容存到本地的一個文件中。

使用這個方法,如果filePath是一個已經(jīng)存在的文件,如果DownloadFile的執(zhí)行web請求的過程中發(fā)生了錯誤,則會刪除掉filePath以前的內(nèi)容。以下是驗證代碼,和另一種選擇方案。

?

class?Program
{
????
static?void?Main(string[]?args)
????{
????????
const?string?filePath?=?@"c:\a.html";
????????
const?string?url?=?"http://dat0a11.book.hexun.com/chapter-1031-1-7.shtml";
????????
try
????????{
????????????
using?(WebClient?wc?=?new?WebClient())
????????????{
????????????????
//wc.DownloadFile("http://dat0a11.book.hexun.com/chapter-1031-1-7.shtml",?filePath);

????????????????
string?html?=?wc.DownloadString(url);
????????????????
using?(StreamWriter?writer?=?new?StreamWriter(filePath,false,wc.Encoding))
????????????????{
????????????????????writer.Write(html);
????????????????????writer.Flush();
????????????????}
????????????}
????????}
????????
catch?(Exception?ex)
????????{
????????????Console.WriteLine(ex.Message);
????????}
????????Console.Read();
????}
}
posted on 2014-11-06 02:15 NET未來之路 閱讀(...) 評論(...) 編輯 收藏

轉(zhuǎn)載于:https://www.cnblogs.com/lonelyxmas/p/4077754.html

與50位技術(shù)專家面對面20年技術(shù)見證,附贈技術(shù)全景圖

總結(jié)

以上是生活随笔為你收集整理的警惕使用WebClient.DownloadFile(string uri,string filePath)方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。