网络客户端出问题了还是什么?
嗨
我昨天运行了我的项目,运行得很好,但是今天当我运行相同的代码时,它挂在 WebClient.DownloadFile() 上,并最终超时并显示以下错误消息:
“System.dll 中发生了类型为‘System.Net.WebException’的未处理异常”,
因此我尝试在新项目中仅运行 Web 客户端,从我知道的硬编码 URL 进行下载。
static void Main(string[] args)
{
WebClient client = new WebClient();
client.DownloadFile("http://www.ashersarlin.com/cartoons/officerap2.gif", "pic.gif");
}
同样的事情也会发生。它创建一个空文件“pic.gif”,但最终超时。
我可以使用一些指针。我是 .NET 新手,不知道如何解决此问题。
hi
I ran my project yesterday just fine, but today when I ran the same code it hangs on WebClient.DownloadFile() and eventually times out with this error message:
"An unhandled exception of type 'System.Net.WebException' occurred in System.dll"
So I tried running only the webclient in a new project, downloading from a hardcoded url that I know is up like this.
static void Main(string[] args)
{
WebClient client = new WebClient();
client.DownloadFile("http://www.ashersarlin.com/cartoons/officerap2.gif", "pic.gif");
}
Same thing happens. It creates an empty file "pic.gif" but times out eventually.
I could use some pointers. I'm new to .NET and have no idea how to troubleshoot this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的确切代码对我有用......
也许你的默认代理搞砸了?
建议:
WebException
的详细信息 - 它可能会给出更多提示Your exact code works for me...
Perhaps your default proxy is messed up?
Suggestions:
WebException
- it may give more hints