国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

FTP下載時遇到的問題

2019-11-08 01:28:45
字體:
來源:轉載
供稿:網友

現在做的一個項目是用的silverlight做的。 但是遇到一個問題 就是FTP下載的時候  獲取GetResponse時  是超時的響應。 在百度上搜了很多的資料都沒有解決呢。 結果發現解決其實很簡單。 見下測紅色代碼。

//FTP下載操作        public bool getFile(string FTP, string Account, string PassWord,string FileName,string LocalPath)         {            FtpWebRequest reqFTP;            try            {                FileStream outputStream = new FileStream(LocalPath, FileMode.Create);                reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + FTP + "/" + FileName));                reqFTP.Method = WebRequestMethods.Ftp.DownloadFile;                reqFTP.UseBinary = true;                reqFTP.UsePassive = true;                reqFTP.KeepAlive = true;                reqFTP.Credentials = new NetworkCredential(Account, Password);                FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse();                Stream ftpStream = response.GetResponseStream();                long cl = response.ContentLength;                int bufferSize = 2048;                int readCount;                byte[] buffer = new byte[bufferSize];                readCount = ftpStream.Read(buffer, 0, bufferSize);                while (readCount > 0)                {                    outputStream.Write(buffer, 0, readCount);                    readCount = ftpStream.Read(buffer, 0, bufferSize);                }                ftpStream.Close();                outputStream.Close();                response.Close();                return true;            }            catch (Exception err)            {                ExceptionRecord("FTP下載", err.Message + "/r/n" + err.StackTrace);                return false;            }        }

這個樣子的FTP函數。 就能在c#中使用。 同時也能被silverlight的wcf層進行引用了~


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 尚义县| 晋中市| 察雅县| 庆城县| 天水市| 贺兰县| 泾川县| 辽阳县| 平遥县| 石门县| 麻城市| 武乡县| 苍梧县| 高碑店市| 广丰县| 区。| 呼和浩特市| 津市市| 年辖:市辖区| 卢氏县| 巴里| 三原县| 庆城县| 武冈市| 镇远县| 新丰县| 定南县| 横峰县| 尖扎县| 灵山县| 宜宾县| 饶河县| 天水市| 大名县| 水城县| 麟游县| 通辽市| 冀州市| 丰原市| 宜川县| 垦利县|