I have a simple key/value list in JSON being sent back to ASP.NET via POST. Example:

{ "key1": "value1", "key2": "value2"}

I AM NOT TRYING TO DESERIALIZE INTO STRONGLY-TYPED .NET OBJECTS

I simply need a plain old Dictionary(Of String, String), or some equivalent (hash table, Dictionary(Of String, Object), old-school StringDictionary--hell, a 2-D array of strings would work for me.

I can use anything available in ASP.NET 3.5, as well as the popular Json.NET (which I'm already using for serialization to the client).

Apparently neither of these JSON libraries have this forehead-slapping obvious capability out of the box--they are totally focused on reflection-based deserialization via strong contracts.

Any ideas?

Limitations:

  1. I don't want to implement my own JSON parser
  2. Can't use ASP.NET 4.0 yet
  3. Would prefer to stay away from the older, deprecated ASP.NET class for JSON
link|improve this question

1  
re: limitation 3, JavaScriptSerizlizer is used in ASP.NET MVC and is no longer deprecated. – bdukes May 20 '11 at 14:57
feedback

6 Answers

up vote 83 down vote accepted

Json.NET does this...

string json = @"{""key1"":""value1"",""key2"":""value2""}";

Dictionary<string, string> values = JsonConvert.DeserializeObject<Dictionary<string, string>>(json);
link|improve this answer
2  
Awesome, thanks James! I couldn't find an equivalent example in the Json.NET online help, glad it was as simple as I suspected it should be. – richardtallent Jul 31 '09 at 13:02
12  
Its ridiculous how hard it is to find such a simple example like this. Thank you for posting this - you wouldn't believe the number of places that didn't have an example of such a simple thing – Jim Beam Aug 4 '11 at 21:42
feedback

I did discover .NET has a built in way to cast the JSON string into a Dictionary<String, Object> via the System.Web.Script.Serialization.JavaScriptSerializer type in the 3.5 System.Web.Extensions assembly. Use the method DeserializeObject(String).

I stumbled upon this when doing an ajax post (via jquery) of content type 'application/json' to a static .net Page Method and saw that the method (which had a single parameter of type Object) magically received this Dictionary.

link|improve this answer
JP Richardson's answer below has link to detailed examples – Michael Freidgeim May 30 '11 at 21:41
1  
should be System.Web.Script.Serialization.JavaScriptSerializer (missing the last "r" character) ;) – algiecas Nov 18 '11 at 13:18
but the built in javascriptserializer is buggier than json.net, that solution is better. For example the javascriptseralizer will return nulls instead of blank strings, and doesn't work at all for nullable properties, and so on. – pilavdzice Apr 23 at 22:12
feedback

For those searching the internet and stumbling upon this post, I wrote a blog post on how to use the JavaScriptSerializer class.

Read more... http://procbits.com/2011/04/21/quick-json-serializationdeserialization-in-c/

Here is an example:

var json = "{\"id\":\"13\", \"value\": true}";
var jss = new JavaScriptSerializer();
var table = jss.Deserialize<dynamic>(json);
Console.WriteLine(table["id"]);
Console.WriteLine(table["value"]);
link|improve this answer
hm, I've tried your solution...I have json like this {"id":"13", "value": true} and for me only Dictionary<dynamic> solution works – Marko May 10 '11 at 14:35
ok I found it where is the problem...you need to add [] after dictionary declaration in order to deserialize properly...I'm adding comment to your blog post too... cheers ;) – Marko May 10 '11 at 14:50
I've updated my answer to reflect your specific dataset. It works fine with dynamic. – JP Richardson May 11 '11 at 14:28
I just wrote another JSON parser that is a bit more flexible and supports Silverlight: procbits.com/2011/08/11/… – JP Richardson Aug 11 '11 at 19:49
feedback

Edit: This works, but the accepted answer using Json.NET is much more straightforward. Leaving this one in case someone needs BCL-only code.

It's not supported by the .NET framework out of the box. A glaring oversight--not everyone needs to deserialize into objects with named properties. So I ended up rolling my own:

<Serializable()> Public Class StringStringDictionary
    Implements ISerializable
    Public dict As System.Collections.Generic.Dictionary(Of String, String)
    Public Sub New()
        dict = New System.Collections.Generic.Dictionary(Of String, String)
    End Sub
    Protected Sub New(info As SerializationInfo, _
          context As StreamingContext)
        dict = New System.Collections.Generic.Dictionary(Of String, String)
        For Each entry As SerializationEntry In info
            dict.Add(entry.Name, DirectCast(entry.Value, String))
        Next
    End Sub
    Public Sub GetObjectData(info As SerializationInfo, context As StreamingContext) Implements ISerializable.GetObjectData
        For Each key As String in dict.Keys
            info.AddValue(key, dict.Item(key))
        Next
    End Sub
End Class

Called with:

string MyJsonString = "{ \"key1\": \"value1\", \"key2\": \"value2\"}";
System.Runtime.Serialization.Json.DataContractJsonSerializer dcjs = new
  System.Runtime.Serialization.Json.DataContractJsonSerializer(
    typeof(StringStringDictionary));
System.IO.MemoryStream ms = new
  System.IO.MemoryStream(Encoding.UTF8.GetBytes(MyJsonString));
StringStringDictionary myfields = (StringStringDictionary)dcjs.ReadObject(ms);
Response.Write("Value of key2: " + myfields.dict["key2"]);

Sorry for the mix of C# and VB.NET...

link|improve this answer
Crispy's approach does this more simply: – Mark Rendle Sep 22 '10 at 9:28
[TestMethod] public void TestSimpleObject() { const string json = @"{""Name"":""Bob"",""Age"":42}"; var dict = new JavaScriptSerializer().DeserializeObject(json) as IDictionary<string, object>; Assert.IsNotNull(dict); Assert.IsTrue(dict.ContainsKey("Name")); Assert.AreEqual("Bob", dict["Name"]); Assert.IsTrue(dict.ContainsKey("Age")); Assert.AreEqual(42, dict["Age"]); } – Mark Rendle Sep 22 '10 at 9:28
This is fantastic. Helps with WCF service implementations that interface using JSON with browser-based clients. – Anton Jan 6 '11 at 1:26
feedback

Tried to not use any external JSON implementation so i deserialised like this:

string json = "{\"id\":\"13\", \"value\": true}";

var serializer = new JavaScriptSerializer(); //using System.Web.Script.Serialization;

Dictionary<string, string> values = serializer.Deserialize<Dictionary<string, string>>(json);
link|improve this answer
Add reference System.Web.Extensions to use System.Web.Script – iphonedroid Feb 22 at 20:07
feedback

I had same problem so I wrote this my self. This solution is differentiated from other answers because it can deserialize in to multiple levels.

Just send json string in to deserializeToDictionary function it will return non strongly-typed Dictionary<string, object> object.

private Dictionary<string, object> deserializeToDictionary(string jo)
         {
                        Dictionary<string, object> values = JsonConvert.DeserializeObject<Dictionary<string, object>>(jo);
                        Dictionary<string, object> values2 = new Dictionary<string, object>();
                        foreach (KeyValuePair<string, object> d in values)
                        {
                            if (d.Value.GetType().FullName.Contains("Newtonsoft.Json.Linq.JObject"))
                            {
                                values2.Add(d.Key, deserializeToDictionary(d.Value.ToString()));
                            }
                            else
                            {
                                values2.Add(d.Key, d.Value);
                            }

                        }
                        return values2;
                }
        }

Ex: This will return Dictionary<string, object> object of a Facebook JSON response.

private void button1_Click(object sender, EventArgs e)
{
    string responsestring = "{\"id\":\"721055828\",\"name\":\"Dasun Sameera Weerasinghe\",\"first_name\":\"Dasun\",\"middle_name\":\"Sameera\",\"last_name\":\"Weerasinghe\",\"username\":\"dasun\",\"gender\":\"male\",\"locale\":\"en_US\",  hometown: {id: \"108388329191258\", name: \"Moratuwa, Sri Lanka\",}}";
    Dictionary<string, object> values = deserializeToDictionary(responsestring);
}

Note: hometown further deserilize into a Dictionary<string, object> object.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.