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

C#解析Json

时间:2016-10-31 18:26:38      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:com   ade   line   bsp   http   zsh   log   ges   pre   

 解析:{‘id‘:‘4028d80858053bed0158053ef7a50001‘,‘sl‘:0.0,‘sfyfz‘:‘0‘,‘zwjyzsbh‘:‘1000001600000018‘}

 1、新建winform控制台项目

2、在项目里新建一个实体类test.cs

class test
    {
       
        public string id { get; set; }
        public string sl { get; set; }
        public string sfyfz { get; set; }
        public string zwjyzsbh { get; set; }
        public string shlb { get; set; }
        public string zsh { get; set; }
       
    }

 3、在Program.cs的Main方法里(方法一)

class Program
    {
        static void Main(string[] args)
        {
           
            string json=@"[{‘id‘:‘22222222‘,‘sl‘:0.0,‘sfyfz‘:‘0‘,‘zwjyzsbh‘:‘333333333‘}]";
            
            List<test> jobInfoList = JsonConvert.DeserializeObject<List<test>>(json);
            foreach (test jobInfo in jobInfoList)
            {
              
                Console.WriteLine("id:" + jobInfo.id);
            }
            Console.ReadLine();
        }
    }

要引用Newtonsoft.Json(nuget下载)

技术分享

 

 

 

3、在Program.cs的Main方法里(方法二)

class Program
    {
        static void Main(string[] args)
        {
           
            string json = @"[{‘id‘:‘4028d80858053bed0158053ef7a50001‘,‘sl‘:0.0,‘sfyfz‘:‘0‘,‘zwjyzsbh‘:‘1000001600000018‘}]";
            JsonReader reader = new JsonTextReader(new StringReader(json));

            while (reader.Read())
            {
                Console.WriteLine(reader.Value);
            }
            Console.ReadLine();
        }
    }

 

C#解析Json

标签:com   ade   line   bsp   http   zsh   log   ges   pre   

原文地址:http://www.cnblogs.com/Donnnnnn/p/6016767.html

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