使用 Go 讀取 XML 檔案

環境

  • macOS
  • Go 1.13.4

做法

新增一個 users.xml 檔作為範例 :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<users>
<user type="admin">
<name>Elliot</name>
<social>
<facebook>https://facebook.com</facebook>
<twitter>https://twitter.com</twitter>
<youtube>https://youtube.com</youtube>
</social>
</user>
<user type="reader">
<name>Fraser</name>
<social>
<facebook>https://facebook.com</facebook>
<twitter>https://twitter.com</twitter>
<youtube>https://youtube.com</youtube>
</social>
</user>
</users>

新增 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
package main

import (
"encoding/xml"
"fmt"
"io/ioutil"
"os"
)

// Users 結構體
type Users struct {
XMLName xml.Name `xml:"users"`
Users []User `xml:"user"`
}

// User 結構體
type User struct {
XMLName xml.Name `xml:"user"`
Type string `xml:"type,attr"`
Name string `xml:"name"`
Social Social `xml:"social"`
}

// Social 結構體
type Social struct {
XMLName xml.Name `xml:"social"`
Facebook string `xml:"facebook"`
Twitter string `xml:"twitter"`
Youtube string `xml:"youtube"`
}

func main() {
// 開啟檔案
xmlFile, err := os.Open("users.xml")

// 處理錯誤
if err != nil {
fmt.Println(err)
}

// 關閉檔案
defer xmlFile.Close()

// 讀取檔案
byteValue, _ := ioutil.ReadAll(xmlFile)

// 宣告一個 users 變數,型別為 Users 結構體
var users Users

// 將檔案內容解析至 users 變數
xml.Unmarshal(byteValue, &users)

// 遍歷 users 變數,並將內容輸出
for i := 0; i < len(users.Users); i++ {
fmt.Println("User Type: " + users.Users[i].Type)
fmt.Println("User Name: " + users.Users[i].Name)
fmt.Println("Facebook Url: " + users.Users[i].Social.Facebook)
}
}

結果:

1
2
3
4
5
6
User Type: admin
User Name: Elliot
Facebook Url: https://facebook.com
User Type: reader
User Name: Fraser
Facebook Url: https://facebook.com

參考資料: