### 開始使用
我們將通過一個非常簡單的例子來了解如何使用。
首先,我們需要在任意目錄創建兩個文件(my.ini 和 main.go),在這里我們選擇 /tmp/ini 目錄。
```
$ mkdir -p /tmp/ini
$ cd /tmp/ini
$ touch my.ini main.go
$ tree .
.
├── main.go
└── my.ini
0 directories, 2 files
```
現在,我們編輯 my.ini 文件并輸入以下內容(_部分內容來自 Grafana_)。
```
# possible values : production, development
app_mode = development
[paths]
# Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
data = /home/git/grafana
[server]
# Protocol (http or https)
protocol = http
# The http port to use
http_port = 9999
# Redirect to correct domain if host header does not match domain
# Prevents DNS rebinding attacks
enforce_domain = true
```
很好,接下來我們需要編寫 main.go 文件來操作剛才創建的配置文件。
```go
package main
import (
"fmt"
"os"
"gopkg.in/ini.v1"
)
func main() {
cfg, err := ini.Load("my.ini")
if err != nil {
fmt.Printf("Fail to read file: %v", err)
os.Exit(1)
}
// 典型讀取操作,默認分區可以使用空字符串表示
fmt.Println("App Mode:", cfg.Section("").Key("app_mode").String())
fmt.Println("Data Path:", cfg.Section("paths").Key("data").String())
// 我們可以做一些候選值限制的操作
fmt.Println("Server Protocol:",
cfg.Section("server").Key("protocol").In("http", []string{"http", "https"}))
// 如果讀取的值不在候選列表內,則會回退使用提供的默認值
fmt.Println("Email Protocol:",
cfg.Section("server").Key("protocol").In("smtp", []string{"imap", "smtp"}))
// 試一試自動類型轉換
fmt.Printf("Port Number: (%[1]T) %[1]d\n", cfg.Section("server").Key("http_port").MustInt(9999))
fmt.Printf("Enforce Domain: (%[1]T) %[1]v\n", cfg.Section("server").Key("enforce_domain").MustBool(false))
// 差不多了,修改某個值然后進行保存
cfg.Section("").Key("app_mode").SetValue("production")
cfg.SaveTo("my.ini.local")
}
```
運行程序,我們可以看下以下輸出:
```
$ go run main.go
App Mode: development
Data Path: /home/git/grafana
Server Protocol: http
Email Protocol: smtp
Port Number: (int) 9999
Enforce Domain: (bool) true
$ cat my.ini.local
# possible values : production, development
app_mode = production
[paths]
# Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
data = /home/git/grafana
...
```
### 高級用法
我寫了一個demo如果需要可以下載 [高級用法](https://github.com/lu569368/configini "高級用法")
這個只是這個包功能的很小一部分!如果想獲取更多的功能可以查看[官網文檔](https://ini.unknwon.io/docs "官網文檔")