同步請求資源

請求msdn上的一個(gè)頁面計(jì)算頁面大小

大數(shù)據(jù)培訓(xùn),云培訓(xùn),數(shù)據(jù)挖掘培訓(xùn),云計(jì)算培訓(xùn),高端軟件開發(fā)培訓(xùn),項(xiàng)目經(jīng)理培訓(xùn)

static void Main(string[] args)
{    string url = "https://docs.microsoft.com/zh-cn/dotnet/core/api/system";    try
    {
        WebRequest request = WebRequest.Create(url);
        WebResponse response = request.GetResponse();        using (var reader = new StreamReader(response.GetResponseStream()))
        {            string text = reader.ReadToEnd();
            Console.WriteLine(FormatBytes(text.Length));
        }
    }    catch (WebException e)
    {
    }    catch (IOException e)
    {
    }    catch (NotSupportedException e)
    {
    }
}static string FormatBytes(long bytes)
{    string[] magnitudes = new string[] { "GB", "MB", "KB", "Bytes" };    long max = (long)Math.Pow(1024, magnitudes.Length);    var t1 = magnitudes.FirstOrDefault(magnitude => bytes > (max /= 10
        
		

網(wǎng)友評論