-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
83 lines (70 loc) · 1.51 KB
/
main.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"strings"
)
const url ="https://catalogapi.nso.go.th/api/index?table=SES_OS_19&format=json"
func main() {
/*
content := "สวัสดี จากภาษา Go!"
file, err := os.Create("./fromString.txt")
checkError(err)
length, err := io.WriteString(file, content)
checkError(err)
fmt.Printf("Wrote a file with %v characters\n", length)
defer file.Close()
defer readFile("./fromString.txt")
*/
// อ่านข้อความไฟล์จากเว็บ
resp, err := http.Get(url)
if err != nil {
panic(err)
}
fmt.Printf("Response type: %T\n", resp)
defer resp.Body.Close()
bytes, err := ioutil.ReadAll(resp.Body)
if err != nil {
panic(err)
}
content := string(bytes)
// fmt.Print(content)
tours := toursFromJson(content)
for _, tour := range tours {
fmt.Println(tour.Name)
}
}
/*
func readFile(fileName string) {
data, err := ioutil.ReadFile(fileName)
checkError(err)
fmt.Println("ข้อความที่อ่านจากไฟล์:", string(data))
}
func checkError(err error) {
if err != nil {
panic(err)
}
}
*/
func toursFromJson(content string) []Tour {
tours := make([]Tour, 0, 20)
decoder := json.NewDecoder(strings.NewReader(content))
_, err := decoder.Token()
if err != nil {
panic(err)
}
var tour Tour
for decoder.More() {
err := decoder.Decode(&tour)
if err != nil {
panic(err)
}
tours = append(tours, tour)
}
return tours
}
type Tour struct {
Name, Price string
}