byte[] byts = new byte[HttpContext.Current.Request.InputStream.Length];
HttpContext.Current.Request.InputStream.Read(byts, 0, byts.Length);
string req = System.Text.Encoding.Default.GetString(byts);
var te= Newtonsoft.Json.JsonConvert.DeserializeObject<dynamic>(req);
Dictionary<string, dynamic> dic = new Dictionary<string, dynamic>();
foreach (var VARIABLE in te)
{
dic.Add(VARIABLE.Name, VARIABLE.Value);
}
foreach (var VARIABLE in dic.OrderBy(x => x.Key))
{
int i = VARIABLE.Value;
}
application/json 参数读取排序
最新推荐文章于 2024-09-09 18:47:40 发布
本文介绍了一种从HTTP请求中读取并解析数据的方法。通过将输入流转换为字节数组,然后使用默认编码将其转换为字符串,最后利用Json.NET进行反序列化,将请求体中的JSON数据转换为动态对象,并存储到字典中。
摘要由CSDN通过智能技术生成