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

Posted 一根火柴Blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# Newtonsoft.Json 读取文件,返回json字符串相关的知识,希望对你有一定的参考价值。

第一种方法:

        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("
", string.Empty).Replace("
", string.Empty).Replace("	", string.Empty);
            }
            return content;
        }

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

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

以上是关于C# Newtonsoft.Json 读取文件,返回json字符串的主要内容,如果未能解决你的问题,请参考以下文章

C#利用newtonsoft.json读取.so配置文件内容

c# 读取json的问题,JObject不能强转成JArray

c# 在.NET使用Newtonsoft.Json转换,读取,写入json

C# 读取Json配置文件

读取 webapi 2 令牌时读取 HttpResponseMessage.Content 会引发 Newtonsoft.Json.JsonReaderException

c#中,怎们从YAML文件读入数组?