■ WebClient 클래스를 사용해 서버 인코딩 타입에 맞춰 문자열을 다운로드하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 31 32 33 34 35 36 37 38 39 40 41 |
using System.Net; using System.Text; #region 문자열 다운로드하기 - DownloadString(webClient, url) /// <summary> /// 문자열 다운로드하기 /// </summary> /// <param name="webClient">웹 클라이언트</param> /// <param name="url">URL</param> /// <returns>다운로드 문자열</returns> public string DownloadString(WebClient webClient, string url) { const string charsetKey = "charset"; byte[] dataByteArray = webClient.DownloadData(url); string contentType = webClient.ResponseHeaders["Content-Type"]; int charsetPosition = contentType.IndexOf(charsetKey); Encoding currentEncoding = Encoding.Default; if(charsetPosition != -1) { charsetPosition = contentType.IndexOf("=", charsetPosition + charsetKey.Length); if(charsetPosition != -1) { string charset = contentType.Substring(charsetPosition + 1); currentEncoding = Encoding.GetEncoding(charset); } } return currentEncoding.GetString(dataByteArray); } #endregion |