Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vikasavnish/6264ba0cdd7812e841db616b7df0e791 to your computer and use it in GitHub Desktop.
Save vikasavnish/6264ba0cdd7812e841db616b7df0e791 to your computer and use it in GitHub Desktop.
package main
import (
"encoding/json"
"fmt"
)
func main() {
//Simple Employee JSON object which we will parse
empArray := `[
{
"id": 1,
"name": "Mr. Boss",
"department": "",
"designation": "Director",
"address": {
"city": "Mumbai",
"state": "Maharashtra",
"country": "India"
}
},
{
"id": 11,
"name": "Irshad",
"department": "IT",
"designation": "Product Manager",
"address": {
"city": "Mumbai",
"state": "Maharashtra",
"country": "India"
}
},
{
"id": 12,
"name": "Pankaj",
"department": "IT",
"designation": "Team Lead",
"address": {
"city": "Pune",
"state": "Maharashtra",
"country": "India"
}
}
]`
// Declared an empty interface of type Array
var results []map[string]interface{}
// Unmarshal or Decode the JSON to the interface.
json.Unmarshal([]byte(empArray), &results)
for key, result := range results {
address := result["address"].(map[string]interface{})
fmt.Println("Reading Value for Key :", key)
//Reading each value by its key
fmt.Println("Id :", result["id"],
"- Name :", result["name"],
"- Department :", result["department"],
"- Designation :", result["designation"])
fmt.Println("Address :", address["city"], address["state"], address["country"])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment