Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to parse/deserialize dynamic JSON

Tags:

json

go

Scenario:
Consider the following is the JSON :

{    "Bangalore_City": "35_Temperature",    "NewYork_City": "31_Temperature",    "Copenhagen_City": "29_Temperature" } 

If you notice, the data is structured in such a way that there is no hard-coded keys mentioning City/Temperature its basically just values.

Issue: I am not able to parse any JSON which is dynamic.

Question: Could anyone have found solution for this kind of JSON parsing? I tried go-simplejson, gabs & default encoding/json but no luck.

Note: The above JSON is just for sample. And there are lot of applications which are using the current API, So I do not want to change how the data is structured. I mean I can't change to something as follows:

[{    "City_Name":"Bangalore",    "Temperature": "35" },...] 

Then I can define struct

type TempData struct {   City_Name string   Temperature  string } 
like image 485
Amol M Kulkarni Avatar asked Mar 30 '15 13:03

Amol M Kulkarni


People also ask

What is JObject parse in C#?

JObject class has parse method; it parses the JSON string and converts it into a Key-value dictionary object. In the following example, I have used “JObject. Parse” method and retrieved data using key. string jsonData = @"{ 'FirstName':'Jignesh', 'LastName':'Trivedi' }"; var details = JObject.

What is a dynamic JSON?

A dynamic JSON file will be created to store the array of JSON objects. Consider, we have a database named gfg, a table named userdata. Now, here is the PHP code to fetch data from database and store them into JSON file named gfgfuserdetails. json by converting them into an array of JSON objects.

Does JsonConvert DeserializeObject throw?

DeserializeObject can throw several unexpected exceptions (JsonReaderException is the one that is usually expected). These are: ArgumentException.


1 Answers

You can unmarshal into a map[string]string for example:

m := map[string]string{} err := json.Unmarshal([]byte(input), &m) if err != nil {     panic(err) } fmt.Println(m) 

Output (wrapped):

map[Bangalore_City:35_Temperature NewYork_City:31_Temperature     Copenhagen_City:29_Temperature] 

Try it on the Go Playground.

This way no matter what the keys or values are, you will have all pairs in a map which you can print or loop over.

Also note that although your example contained only string values, but if the value type is varying (e.g. string, numbers etc.), you may use interface{} for the value type, in which case your map would be of type map[string]interface{}.

Also note that I created a library to easily work with such dynamic objects which may be a great help in these cases: github.com/icza/dyno.

like image 76
icza Avatar answered Sep 29 '22 23:09

icza