Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

decode_json

package main

import (
	//"io/ioutil"
	"encoding/json"
	"fmt"
)




func main() () {
		content := []byte(`[
		{"acl": "ACLLLLLL"},
		{"acl": "ABCCCCCC"}
	]`)
	type AclBodyPut struct {
	acl string `json:"acl"`
    }
		var users []AclBodyPut
		fmt.Printf("Initiate user=_%s_\n", users)
		err := json.Unmarshal(content, &users)
		if err != nil {
			fmt.Println(err)
			return
		}
		fmt.Printf("Initiate decode=_%s_\n json=%s\n", users, content)
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.