网上找了好多资料,所有的API函数或者是MFC封装的成员函数,我都没实现了. 一定是我没了解清楚,有没有这方面比较老道的,帮我解决一下~ using System; using System.Collections.Generic; using System.Text; using System.Net; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { WebClient web_client = new WebClient(); string image_url = "http-//img.my.csdn-net/uploads/201303/21/1363842729_1854.png"; string save_path = @"D:\morewindows.png"; web_client.DownloadFile(image_url, save_path); } } }也就是说你在网上找到的这些资料中的方法其实都可以实现HTTPS的访问,只是少了个参数。 把网上找到的示例代码中涉及到的API,去MSDN上查他的说明,都弄懂咯。就明白该怎么用了。
|