现在我正在使用我的第一个Windows Mobile项目,我有一个奇怪的问题。
我正在使用WebRequest
从Internet上下载一些图像 - 在我的手机上它可以工作,但在调试器中我有套接字异常。
string url = "http://new.meteo.pl/um/metco/mgram_pict.php?ntype=0u&fdate=2010011006&row=381&col=199&lang=pl";
Stream stream = null;
WebRequest requestPic = WebRequest.Create(url);
WebResponse responsePic = requestPic.GetResponse();
stream = responsePic.GetResponseStream();
return new System.Drawing.Bitmap(stream);
输出:
A first chance exception of type 'System.Net.WebException' occurred in System.dll
A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll
The thread 0x167c46f6 has exited with code 0 (0x0).
如何强制我的本地实例获取此图像?
答案 0 :(得分:1)
如果您正在使用设备模拟器,只需配置网络信息。
并确保它可以与外部世界连接(根据您的网络基础设施可能无法连接)。