zoukankan      html  css  js  c++  java
  • WebClient 使用

    --post  请求

    public static string PostMsg(Guid orgid, int page, int rows)
            {
                System.Net.WebClient client = new System.Net.WebClient();

                string postData = "{"groupid": "c3c5e53cd423480aa907f123338e0850","type": ["1","3","4"],"start":"" + page + "","end":"" + rows + ""}";
                byte[] sendData = Encoding.GetEncoding("GB2312").GetBytes(postData);

                client.Headers.Add("Content-Type", "application/json;charset=UTF-8");
                client.Headers.Add("ContentLength", sendData.Length.ToString());

                var recData = client.UploadData("http://122.226.255.148:8098/aam/rest/member/query", "POST", sendData);

                var result = Encoding.GetEncoding("UTF-8").GetString(recData);
                return result;
            }



    --get  请求


      /// <summary>
            /// 发送http请求
            /// </summary>
            /// <param name="url"></param>
            /// <param name="msg"></param>
            /// <returns></returns>
            public static string PostMsg(string url)
            {
                System.Net.WebClient client = new System.Net.WebClient();
                System.IO.Stream strm = client.OpenRead(url);
                System.IO.StreamReader reader = new System.IO.StreamReader(strm);
                string resultData = reader.ReadToEnd();
                return resultData;
            }

  • 相关阅读:
    .NET 操作XML
    C#常用操作类库五(电脑操作类)
    C#常用操作类库四(File操作类)
    C#常用操作类库一(验证类)
    RabbitMQ 学习
    redis 常用命令
    windows10配置redis一主二从三哨兵
    Oracle递归查询(查询当前记录所有父级或子级)
    echarts 中 柱图 、折线图、柱图层叠
    简单的前台登录
  • 原文地址:https://www.cnblogs.com/zhtbk/p/4530756.html
Copyright © 2011-2022 走看看