• 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;
            }

  • 相关阅读:
    网站宣传【免费】
    gridview行链接
    提前预告
    C#中var、int、object性能比较
    20部软件测试视频教程整合
    PO、VO、DTO、POJO
    云计算、虚拟化、容器
    Linux打包和压缩的区别
    Linux之Shell定时备份数据库
    luogu P1997 faebdc的烦恼 | 莫队
  • 原文地址:https://www.cnblogs.com/zhtbk/p/4530756.html
Copyright © 2020-2023  润新知