//주소를 가지고 초기화를 시켜줍니다.
System.Net.WebRequest req = System.Net.WebRequest.Create("http://skytigerx.blog.me");
//인터넷 주소에 대한 응답을 반환합니다.
System.Net.WebResponse result = req.GetResponse();
//인코딩설정
Encoding encode = System.Text.Encoding.Default;
//스트림설정
System.IO.Stream ReceiveStream = result.GetResponseStream();
StringBuilder WebSouce=new StringBuilder();
Byte[] read = new Byte[512];
int bytes = ReceiveStream.Read(read, 0, 512);
while (bytes > 0)
{
WebSouce.Append(encode.GetString(read, 0, bytes));
bytes = ReceiveStream.Read(read, 0, 512);
}
ReceiveStream.Close();
string html = WebSouce.ToString();
이렇게 하면 html 변수에 해당 URL에있는 소스가 긁혀 온다.
가끔 웹을 하다보면 이런일이 필요하다.
DataTable 정보를 엑셀로 저장하기 (0) | 2019.05.30 |
---|---|
C# 다른 프로그램 실행여부 확인하기 (0) | 2019.03.14 |
c# 응용프로그램에서 txt에 있는 파일 내용 가져와서 응용 (0) | 2019.03.12 |
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |