开发者

Is there an existing library to parse JSON to Dictionary<String,Object> in .net?

I'd like to be able to parse a string of JSON representing an obje开发者_运维知识库ct into a property bag (like a Dictionary) which I can use in C#.

Given this string:

{ "id":1, "name":"some name", "some parameter":2 }

I want to end up with a Dictionary which contains "id", "name", and "some parameter" as keys and 1, "some name", and 2 as values respectively.

I don't want to parse the JSON string myself - maybe there's a library (preferably in the .net framework) that I can lean on to do the parsing for me to give access to the key/values in the JSON object. Or is there a deserializer available which I can explicitly tell which .net type to target?

In my scenario I'll only ever have one root "object" (it won't start with an array).

Thanks.


var json = new JavaScriptSerializer() { MaxJsonLength = int.MaxValue };
var dict = (IDictionary<string, object>)json.DeserializeObject(yourString);


JavaScriptSerializer should do what you need.

Also, Json.NET if you don't mind going 3rd party.


Have you looked at the DataContractJsonSerializer and JavaScriptSerializer to see if either of those meet your needs?

If not, you could also try JSON.NET

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜