Last active
July 22, 2022 15:41
-
-
Save irshadhasmat/7932c83fe62b74a2fd138cb117b67c65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
) | |
func main() { | |
//Simple Employee JSON object which we will parse | |
empJson := `{ | |
"id" : 11, | |
"name" : "Irshad", | |
"department" : "IT", | |
"designation" : "Product Manager" | |
}` | |
// Declared an empty interface | |
var result map[string]interface{} | |
// Unmarshal or Decode the JSON to the interface. | |
json.Unmarshal([]byte(empJson), &result) | |
//Reading each value by its key | |
fmt.Println("Id :", result["id"], | |
"\nName :", result["name"], | |
"\nDepartment :", result["department"], | |
"\nDesignation :", result["designation"]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment