-
Notifications
You must be signed in to change notification settings - Fork 4
/
14_json_unmarshal_array.go
50 lines (43 loc) · 1.25 KB
/
14_json_unmarshal_array.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Třináctá část
// Vývoj síťových aplikací v programovacím jazyku Go (práce s JSONem a rastrovými obrázky)
// https://www.root.cz/clanky/vyvoj-sitovych-aplikaci-v-programovacim-jazyku-go-prace-s-jsonem-a-rastrovymi-obrazky/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů ze třinácté části:
// https://github.com/tisnik/go-root/blob/master/article_13/README.md
//
// Demonstrační příklad číslo 14:
// Unmarshalling pole z JSONu
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_13/14_json_unmarshal_array.html
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
)
func main() {
inputJSONAsBytes, err := ioutil.ReadFile("numbers.json")
if err != nil {
log.Fatal(err)
}
fmt.Println("Input (bytes):")
fmt.Println(inputJSONAsBytes)
fmt.Println("\nInput (string):")
fmt.Println(string(inputJSONAsBytes))
var numbers []int
json.Unmarshal(inputJSONAsBytes, &numbers)
fmt.Println("\nOutput:")
fmt.Println(numbers)
fmt.Println("\nItems:")
for i, item := range numbers {
fmt.Printf("%d\t%d\n", i, item)
}
}