码迷,mamicode.com
首页 > Windows程序 > 详细

C# Newtonsoft.Json 读取文件,返回json字符串

时间:2019-09-16 21:32:42      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:返回   format   serve   ring   code   convert   public   tst   adt   

第一种方法:

        public object getData2()
        {
            string content;
            using (StreamReader sr = new StreamReader(Server.MapPath("/Content/test.json")))
            {
                content = sr.ReadToEnd();
            }
            JsonSerializerSettings jSetting = new JsonSerializerSettings
            {
                NullValueHandling = NullValueHandling.Ignore,
                DateFormatString = "yyyy-MM-dd HH:m:ss"
            };
            var jsonObject = JsonConvert.DeserializeObject<dynamic>(content, jSetting);
            Response.ContentType = "application/json";
            return jsonObject;
        }

第二种方法:

 
        public string getData()
        {
            string content;
            using (StreamReader sr = new StreamReader(Server.MapPath("/Content/test.json")))
            {
                content = sr.ReadToEnd().Replace("\r", string.Empty).Replace("\n", string.Empty).Replace("\t", string.Empty);
            }
            return content;
        }

第三种方法:直接返回json文件,设置返回类型ContentType为“application/json":

        public FilePathResult getData3()
        {
            return new FilePathResult("~/Content/test.json", "application/json");
        }

C# Newtonsoft.Json 读取文件,返回json字符串

标签:返回   format   serve   ring   code   convert   public   tst   adt   

原文地址:https://www.cnblogs.com/AlexanderZhao/p/11529950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!