WebClient ws = new WebClient();
ws.Credentials = new System.Net.NetworkCredential(username, password, domain);
ws.DownloadFile("https://xxxx.xxxx.com/xxxx.xml", @"C:WindowsTEMPDownloaded.xml");
I got error Object reference not set to an instance of an object . Anyone know why?
如果我把“https://xx.xx.com/xxxx.xml”复制到浏览器上,可以下载并节省到“C:WindowsTEMPDownloaded.xml”,但我的节目不能只留下错误。
此前,我使用同一代码成功地下载了档案,但这是另一个网站,有http://www.un.org。 无法确定这一问题的原因。