读取流的应用

  1. 接收端通过Request.InputStream读取流
public static string StreamRead() 
{
byte[] byts = new byte[HttpContext.Current.Request.InputStream.Length];
HttpContext.Current.Request.InputStream.Read(byts, 0, byts.Length);
string req = System.Text.Encoding.UTF8.GetString(byts);
return HttpContext.Current.Server.UrlDecode(req);
}
/// <summary>
/// 获得请求报文转换成字符串
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
public static string getRequestBody(HttpRequestBase request)
{
string result = "";
using (Stream st = request.InputStream)
{
StreamReader sr = new StreamReader(st, Encoding.UTF8);
result = sr.ReadToEnd();
}
return result;
}

测试:

 //Get;
        //  LaoBai/GetMsg
         
        /// <summary>
        /// 获取新订单信息
        /// </summary>
        /// <returns></returns>
        public string GetMsg()
        {
            string json = "{\"code\":1,\"msg\":\"其他错误\"}";
            string postString = string.Empty;
            using (Stream stream = System.Web.HttpContext.Current.Request.InputStream)
            {
                Byte[] postBytes = new Byte[stream.Length];

                stream.Read(postBytes, 0, (Int32)stream.Length);

                postString = Encoding.UTF8.GetString(postBytes);

                LogHelper.WriteBarcodesLog("消息内容:" + postString, "LaoBaiPush");

                if (!string.IsNullOrEmpty(postString))
                {  
                    NewOrderNotification newOrderInfos = JsonConvert.DeserializeObject<NewOrderNotification>(postString); 
                    if (newOrderInfos!=null)
                    {

                        json = "{\"code\":0,\"msg\":\"" + newOrderInfos + "\"}";

                        LogHelper.WriteBarcodesLog("接收成功,保存状态:" + postString, "youzanpush");
                        
                    }
                    else
                    {
                        json = "{\"code\":1,\"msg\":\"" + postString + "\"}";
                        LogHelper.WriteBarcodesLog("测试消息,不处理。" + postString, "youzanpush");
                        
                    }
                }
                else
                {
                    json = "{\"code\":1,\"msg\":\"空数据\"}";
                    LogHelper.WriteBarcodesLog("无数据。" + postString, "youzanpush");
                }
            }
            return json;
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

你的美,让我痴迷

你的好,我会永远记住你的。

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值