您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)如何讀取yaml,json,ini等配置文件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
實(shí)際項目中,還有一個比較重要的基礎(chǔ)功能,就是讀取相關(guān)的配置文件。今天就來說一說,Golang 是如何讀取YAML,JSON,INI等配置文件的。
JSON 應(yīng)該比較熟悉,它是一種輕量級的數(shù)據(jù)交換格式。層次結(jié)構(gòu)簡潔清晰 ,易于閱讀和編寫,同時也易于機(jī)器解析和生成。
1. 創(chuàng)建 conf.json:
{ "enabled": true, "path": "/usr/local"}
2. 新建config_json.go:
package main
import (
"encoding/json"
"fmt"
"os"
)
type configuration struct {
Enabled bool
Path string
}
func main() {
// 打開文件
file, _ := os.Open("conf.json")
// 關(guān)閉文件
defer file.Close()
//NewDecoder創(chuàng)建一個從file讀取并解碼json對象的*Decoder,解碼器有自己的緩沖,并可能超前讀取部分json數(shù)據(jù)。
decoder := json.NewDecoder(file)
conf := configuration{}
//Decode從輸入流讀取下一個json編碼值并保存在v指向的值里
err := decoder.Decode(&conf)
if err != nil {
fmt.Println("Error:", err)
}
fmt.Println("path:" + conf.Path)
}
啟動運(yùn)行后,輸出如下:
D:\Go_Path\go\src\configmgr>go run config_json.gopath:/usr/local
INI文件格式是某些平臺或軟件上的配置文件的非正式標(biāo)準(zhǔn),由節(jié)(section)和鍵(key)構(gòu)成,比較常用于微軟Windows操作系統(tǒng)中。這種配置文件的文件擴(kuò)展名為INI。
1. 創(chuàng)建 conf.ini:
[Section]enabled = truepath = /usr/local # another comment
2.下載第三方庫:go get gopkg.in/gcfg.v1
3. 新建 config_ini.go:
package main
import (
"fmt"
gcfg "gopkg.in/gcfg.v1"
)
func main() {
config := struct {
Section struct {
Enabled bool
Path string
}
}{}
err := gcfg.ReadFileInto(&config, "conf.ini")
if err != nil {
fmt.Println("Failed to parse config file: %s", err)
}
fmt.Println(config.Section.Enabled)
fmt.Println(config.Section.Path)
}
啟動運(yùn)行后,輸出如下:
D:\Go_Path\go\src\configmgr>go run config_ini.gotrue/usr/local
yaml 可能比較陌生一點(diǎn),但是最近卻越來越流行。也就是一種標(biāo)記語言。層次結(jié)構(gòu)也特別簡潔清晰 ,易于閱讀和編寫,同時也易于機(jī)器解析和生成。
golang的標(biāo)準(zhǔn)庫中暫時沒有給我們提供操作yaml的標(biāo)準(zhǔn)庫,但是github上有很多優(yōu)秀的第三方庫開源給我們使用。
1. 創(chuàng)建 conf.yaml:
enabled: truepath: /usr/local
2. 下載第三方庫:go get gopkg.in/yaml.v2
3. 創(chuàng)建 config_yaml.go:
package main
import (
"fmt"
"io/ioutil"
"log"
"gopkg.in/yaml.v2"
)
type conf struct {
Enabled bool `yaml:"enabled"` //yaml:yaml格式 enabled:屬性的為enabled
Path string `yaml:"path"`
}
func (c *conf) getConf() *conf {
yamlFile, err := ioutil.ReadFile("conf.yaml")
if err != nil {
log.Printf("yamlFile.Get err #%v ", err)
}
err = yaml.Unmarshal(yamlFile, c)
if err != nil {
log.Fatalf("Unmarshal: %v", err)
}
return c
}
func main() {
var c conf
c.getConf()
fmt.Println("path:" + c.Path)
}
啟動運(yùn)行后,輸出如下:
D:\Go_Path\go\src\configmgr>go run config_yaml.gopath:/usr/local
關(guān)于如何讀取yaml,json,ini等配置文件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。