天天看點

winfrom 用戶端調用伺服器ftp圖檔進行顯示問題

問題其實很簡單,但是自己當時很懵,直接上代碼說原因。

           WebClient web = new WebClient();           

            web.Credentials = new NetworkCredential("users", "pass");

            var bytes = web.DownloadData(ListImagePaths[index].ToString());           

            this.pictureBox1.Image = Bitmap.FromStream(new MemoryStream(bytes));

當時一直報錯,這裡的使用者名密碼是ftp服務的使用者名密碼