반응형
using HtmlAgilityPack;
using System.IO;
using System.Net;
using System.ServiceProcess;
using System.Text;
namespace DemoSVC
{
public partial class Service1 : ServiceBase
{
public Service1()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
WebClient wc = new WebClient();
wc.Encoding = Encoding.UTF8;
string html = wc.DownloadString("http://ehpub.co.kr");
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(html);
HtmlNode hn = doc.DocumentNode.SelectSingleNode("//body");
string bodytxt = hn.InnerText;
FileStream fs = new FileStream(@"D:\\svc\data.txt", FileMode.Create);
byte[] buffer = Encoding.UTF8.GetBytes(bodytxt);
fs.Write(buffer, 0, buffer.Length);
fs.Close();
}
protected override void OnStop()
{
}
}
}
반응형
'빅데이터 > 데이터분석 with C#' 카테고리의 다른 글
HTML Parser 패키지 HtmlAgilityPack 설치 및 HTML BODY 내용 얻어오기 (0) | 2020.05.07 |
---|---|
뉴스 크롤링을 넘어 형태소 분석 구현 (0) | 2020.05.04 |
뉴스 크롤링 라이브러리 만들기3 (0) | 2020.05.04 |
뉴스 크롤링 라이브러리 만들기2 (0) | 2020.05.04 |
뉴스 크롤링 라이브러리 만들기1 (0) | 2020.05.04 |