webclinet downstring 소 후 는 왜?번호.

766 단어 String
c#            。。。    

내 가 한번 해 보 았 는데, 이어서 검사 한 것 은 소 호의 내용 이 GZIP 압축 을 거 쳐 서 야 너 같은 문제 가 발생 한 것 이다.구체 적 인 해결 방법 은 다음 과 같다. System. Net. WebClient wc = new System. Net. WebClient ();wc.BaseAddress = " http://www.sohu.com ";//주의, new GZipStream...이 문장 은 문 제 를 해결 하 는 중점 이 므 로 명칭 공간 System. IO. Compression 을 인용 해 야 한다.using (System.IO.Stream objStream = new GZipStream(wc.OpenRead("/"), CompressionMode.Decompress))        {            using (System.IO.StreamReader _read = new System.IO.StreamReader(objStream, System.Text.Encoding.Default))            {                Response.Write(_read.ReadToEnd());            }                    }OK, 문제 성공 해결

좋은 웹페이지 즐겨찾기