using System;
using System.Collections.Generic;
using System.Text;
using DownLoadThemes.Core;
using System.Text.RegularExpressions;
using System.Net;
using System.Web;
using System.IO;
namespace DownLoadThemes
{
class Program
{
static void Main(string[] args)
{
string url = @"http:/www.dp803.com/themes/xd/default.html";
HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
StreamReader myStream = new StreamReader(myResp.GetResponseStream());
string content = myStream.ReadToEnd();
FileStream nFile = new FileStream("D://border1.xml", FileMode.CreateNew);
StreamWriter sw = new StreamWriter(nFile);
sw.WriteLine(content);
sw.Close();
}
}
}
如上
运行时出现:无效的 URI: 未能分析证书颁发机构/主机。 的错误
把网址换成 百度 或者其他的是,可以正常下载,就是不能下载这个网站中的网页,怎么解决?
呵呵,有问题就大声念出来,就会解决。
如“H T T P : / ”,矣,怎么少一个...
“http:/"少了个"/",话说LZ的下载网页代码有点问题,需要设置下编码,否则下载下来会乱码
嘿嘿,今天我也是,犯了一样的错误