zoukankan      html  css  js  c++  java
  • HttpWebRequest 自定义header,Post发送请求,请求形式是json,坑爹的代码

    public static string PostMoths(string url, LoginDTO obj_model, Dictionary<string, string> dic = null)
    {
    dic = new Dictionary<string, string>();
    dic.Add("Abp.TenantId", "null");
    // .AspNetCore.Culture:zh - CN
    dic.Add(".AspNetCore.Culture", "zh-CN");
    string param = JsonConvert.SerializeObject(obj_model);
    System.Net.HttpWebRequest request;
    request = (System.Net.HttpWebRequest)WebRequest.Create(url);
    request.Method = "POST";
    request.ContentType = "application/json;charset=UTF-8";
    if (dic != null && dic.Count != 0)
    {
    foreach (var item in dic)
    {
    request.Headers.Add(item.Key, item.Value);
    }
    }
    byte[] payload;
    payload = System.Text.Encoding.UTF8.GetBytes(param);
    request.ContentLength = payload.Length;
    string strValue = "";
    try
    {
    Stream writer = request.GetRequestStream();
    writer.Write(payload, 0, payload.Length);
    writer.Close();
    System.Net.HttpWebResponse response;
    response = (System.Net.HttpWebResponse)request.GetResponse();
    System.IO.Stream s;
    s = response.GetResponseStream();
    string StrDate = "";
    StreamReader Reader = new StreamReader(s, Encoding.UTF8);
    while ((StrDate = Reader.ReadLine()) != null)
    {
    strValue += StrDate;
    }
    }
    catch (Exception e)
    {
    strValue = e.Message;
    }
    return strValue;

  • 相关阅读:
    DAY 206 Python验证常见的50个正则表达式
    DAY 205 python使用ftplib模块实现FTP文件的上传下载
    Jmeter组件介绍
    Jmeter安装
    Jmeter学习笔记
    Jmeter:相应断言介绍
    python time模块
    python+selenium+Eclipse安装
    Python os.path模板函数
    ping 计算机全名,返回的不是IP地址
  • 原文地址:https://www.cnblogs.com/topguntopgun/p/10122345.html
Copyright © 2011-2022 走看看