array to json golang code example
Example 1: arraylist to json array
ArrayList list = new ArrayList();
list.add("foo");
list.add("baar");
JSONArray jsArray = new JSONArray(list);
Example 2: json unmarshal golang example
res1D := &response1{
Page: 1,
Fruits: []string{"apple", "peach", "pear"}}
res1B, _ := json.Marshal(res1D)
fmt.Println(string(res1B))