HttpContext.Current.Response.ContentType = "application/json";
            HttpContext.Current.Response.ContentEncoding = Encoding.UTF8;

                Stream inputStream = HttpContext.Current.Request.InputStream;
                Encoding encoding = HttpContext.Current.Request.ContentEncoding;
                StreamReader streamReader = new StreamReader(inputStream, encoding);
                string strJson = streamReader.ReadToEnd();
 

相关文章:

猜你喜欢
相关资源
相似解决方案