lcf's Web Cote

Don't try to tie me down with those conventions.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

获取网页中的验证码图片之二

Posted on 2007-06-22 16:39  Lcf  阅读(131)  评论(0编辑  收藏  举报

使用前引用命名空间
System.net;

        public string DownLoadFile()
        {
            
string address = "https://ab.login.yahoo.com/img/uqS.puVZFenOtCHGdraSMM6XaYQRJbquZZROZ4N5XJgbY4YSlyPQnrocNx9RIA4NxuFtfivDNUE-.jpg";
            
string fileName = @"D:\" + DateTime.Now.ToString("yyyyMMddhhmmss"+ ".jpg";
            WebClient client 
= new WebClient();
            client.DownloadFile(address, fileName);

            
return fileName;
        }