반응형
웹 페이지를 다운로드하는 가장 빠른 C # 코드
URL이 주어지면 해당 웹 페이지의 콘텐츠를 다운로드하는 데 가장 효율적인 코드는 무엇입니까? 저는 관련 이미지, JS 및 CSS가 아닌 HTML 만 고려하고 있습니다.
public static void DownloadFile(string remoteFilename, string localFilename)
{
WebClient client = new WebClient();
client.DownloadFile(remoteFilename, localFilename);
}
MSDN에서 :
using System;
using System.Net;
using System.IO;
public class Test
{
public static void Main (string[] args)
{
if (args == null || args.Length == 0)
{
throw new ApplicationException ("Specify the URI of the resource to retrieve.");
}
WebClient client = new WebClient ();
// Add a user agent header in case the
// requested URI contains a query.
client.Headers.Add ("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
Stream data = client.OpenRead (args[0]);
StreamReader reader = new StreamReader (data);
string s = reader.ReadToEnd ();
Console.WriteLine (s);
data.Close ();
reader.Close ();
}
}
System.Net의 WebClient 클래스를 사용하십시오. .NET 2.0 이상에서.
WebClient Client = new WebClient ();
Client.DownloadFile("http://mysite.com/myfile.txt", " C:\myfile.txt");
여기 내 대답, URL을 취하고 문자열을 반환하는 방법이 있습니다.
public static string downloadWebPage(string theURL)
{
//### download a web page to a string
WebClient client = new WebClient();
client.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
Stream data = client.OpenRead(theURL);
StreamReader reader = new StreamReader(data);
string s = reader.ReadToEnd();
return s;
}
public static void DownloadString (string address)
{
WebClient client = new WebClient ();
string reply = client.DownloadString (address);
Console.WriteLine (reply);
}
다운로드를위한 가장 빠른 (낮은 대기 시간의 다운로드 속도) 솔루션이라고 생각합니다.
// WebClient vs HttpClient vs HttpWebRequest vs RestSharp
// در نهایت به نظرم روش زیر سریعترین روشه
HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(url);
Request.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
Request.Proxy = null;
Request.Method = "GET";
using (WebResponse Response = Request.GetResponse())
{
using (StreamReader Reader = new StreamReader(Response.GetResponseStream()))
{
return Reader.ReadToEnd();
}
}
참조 URL : https://stackoverflow.com/questions/26233/fastest-c-sharp-code-to-download-a-web-page
반응형
'programing' 카테고리의 다른 글
WebApi 도움말 페이지 설명 (0) | 2021.01.18 |
---|---|
응답 본문에 오류가있는 http 200 OK 반환 (0) | 2021.01.18 |
JBoss에 핫 배포-JBoss가 변경 사항을 "보도록"하려면 어떻게해야합니까? (0) | 2021.01.18 |
.git 프로젝트 디렉토리를 어떻게 숨기나요? (0) | 2021.01.18 |
elisp를 디버그하는 방법? (0) | 2021.01.18 |