1.问题描述:

HttpClint 使用FormUrlEncodedContent 调用接口时 报错 System.UriFormatException: 无效的 URI: URI 字符串太长;

2.解决:

using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using System.Web;

namespace PointToPoint
{
    class Program
    {
        static void Main(string[] args)
        {
            string data = "";

            byte[] buffer = System.Text.UTF8Encoding.UTF8.GetBytes(data);
            //压缩后的byte数组
            byte[] compressedbuffer = null;
            //Compress buffer,压缩缓存
            MemoryStream ms = new MemoryStream();
            using (GZipStream zs = new GZipStream(ms, CompressionMode.Compress, true))
            {
                zs.Write(buffer, 0, buffer.Length);
            }
            //只有GZipStream在Dispose后调应对应MemoryStream.ToArray()所得到的Buffer才是我们需要的结果
            compressedbuffer = ms.ToArray();
            //将压缩后的byte数组basse64字符串
            string text64 = Convert.ToBase64String(compressedbuffer);
            var content = HttpUtility.UrlEncode(text64);
            HttpClient client = new HttpClient();
            string d = "account=帐号&password=密码&content=" + System.Web.HttpUtility.UrlEncode(text64);

            var contenStr = new StringContent(d, Encoding.UTF8);
            contenStr.Headers.Remove("Content-Type");//必须
            contenStr.Headers.Add("Content-Type", "application/x-www-form-urlencoded");//1.根据需求设置
            string rlt = client.PostAsync("http://192.168.1.82/BatchSms.ashx", contenStr).Result.Content.ReadAsStringAsync().Result;
            //string rlt = client.SendAsync(request).Result.Content.ReadAsStringAsync().Result;
            Console.WriteLine(rlt);
            Console.ReadKey();
        }
    }
}

 

相关文章:

  • 2022-02-09
  • 2021-07-19
  • 2022-12-23
  • 2022-01-28
  • 2022-12-23
  • 2021-10-20
  • 2021-05-24
猜你喜欢
  • 2022-12-23
  • 2021-10-08
  • 2021-11-07
  • 2021-12-12
  • 2022-02-14
  • 2021-06-02
  • 2021-09-28
相关资源
相似解决方案