在线时间:8:00-16:00
132-9538-2358
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1.添加引用.net 引用Microsoft.mshtml
WebClient wc = new WebClient();wc.Encoding = Encoding.UTF8;string str = wc.DownloadString(@"https://www.ogeek.net/web/73969.html");
HTMLDocumentClass doc = new HTMLDocumentClass();//获取html对象doc.designMode = "on"; //不让解析引擎去尝试运行javascriptdoc.IHTMLDocument2_write(str);把html 文档写入html对象中doc.close();关闭写流Console.WriteLine(doc.title);输出标题Console.WriteLine(doc.body.innerText); 输出bodyConsole.ReadKey();
评论
请发表评论