zoukankan      html  css  js  c++  java
  • C# 发送Http请求 WebClient类

    WebClient位于System.Net命名空间下,通过这个类可以方便的创建Http请求并获取返回内容。

    一、用法1 - DownloadData

    string uri = "http://coderzh.cnblogs.com";
    WebClient wc 
    = new WebClient();
    Console.WriteLine(
    "Sending an HTTP GET request to " + uri);
    byte[] bResponse = wc.DownloadData(uri);
    string strResponse = Encoding.ASCII.GetString(bResponse);
    Console.WriteLine(
    "HTTP response is: ");
    Console.WriteLine(strResponse);

    二、用法2 - OpenRead

    string uri = " http://coderzh.cnblogs.com";
    WebClient wc 
    = new WebClient();
    Console.WriteLine(
    "Sending an HTTP GET request to " + uri);
    Stream st 
    = wc.OpenRead(uri);
    StreamReader sr 
    = new StreamReader(st);
    string res = sr.ReadToEnd();
    sr.Close();
    st.Close();
    Console.WriteLine(
    "HTTP Response is ");
    Console.WriteLine(res);
  • 相关阅读:
    从JavaScript的事件循环到Promise
    Vuex初识
    npm常用命令及版本号浅析
    npm install 时--save-dev和--save的区别
    Json-Server模拟数据接口开发
    基于Express+Socket.io+MongoDB的即时聊天系统的设计与实现
    fileInput实战总结
    找工作总结
    nodejs-基本语法
    初识nodejs
  • 原文地址:https://www.cnblogs.com/coderzh/p/1340794.html
Copyright © 2011-2022 走看看