• TCP编程(3): WebRequest, WebResponse


    /*--===------------------------------------------===---
    WebRequest, WebResponse

                许明会    23:51:45 2007年12月9日
    --===------------------------------------------===---
    */
    using System;
    using System.Net;
    using System.Text;
    using System.IO;

    namespace xumh
    {
        
    public class runMyApp
        {
            
    static void Main()
            {
                
    string strUriBaidu = @"http://www.baidu.com";
                WebRequest req 
    = WebRequest.Create(strUriBaidu);
                WebResponse res 
    = req.GetResponse();
                Stream srm 
    = res.GetResponseStream();
                System.Text.Encoding ec 
    = Encoding.GetEncoding(936);
                StreamReader sr 
    = new StreamReader(srm,ec);
                System.Text.StringBuilder sb 
    = 
                    
    new System.Text.StringBuilder();

                
    char[] buff = new char[256];
                
    int nCount = sr.Read(buff,0,256);
                
    while(nCount>0)
                {
                    sb.Append(
    new string(buff,0,nCount));
                    nCount 
    = sr.Read(buff,0,256);
                }
                Console.WriteLine(sb.ToString());
                
    //

            }
        };
    }
  • 相关阅读:
    DTOJ #3328. 开箱子(unboxing)
    dtoi4649 光明
    dtoi4539「TJOI / HEOI2016」序列
    dtoi3031 交错和查询 (sum)
    dtoi4375「BJOI2019」删数
    dtoi4266 exchange
    dtoi4680 红黑兔
    dtoi1363 楼房重建 (rebuild)
    dtoi1927 [ONTAK2010]Peaks加强版
    dtoi4538 「TJOI / HEOI2016」排序
  • 原文地址:https://www.cnblogs.com/flaaash/p/988747.html
Copyright © 2020-2023  润新知