golang讀取ini設定檔

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

golang讀取ini設定檔

一、安裝config配置解釋包:

go get github.com/larspensjo/config

二、載入其包及代碼設定

package mainimport ("flag""fmt""github.com/larspensjo/config""log""runtime")var (configFile = flag.String("configfile", "config.ini", "General configuration file"))//topic listvar TOPIC = make(map[string]string)func main() {runtime.GOMAXPROCS(runtime.NumCPU())flag.Parse()//set config file stdcfg, err := config.ReadDefault(*configFile)if err != nil {log.Fatalf("Fail to find", *configFile, err)}//set config file std End//Initialized topic from the configurationif cfg.HasSection("topicArr") {section, err := cfg.SectionOptions("topicArr")if err == nil {for _, v := range section {options, err := cfg.String("topicArr", v)if err == nil {TOPIC[v] = options}}}}//Initialized topic from the configuration ENDfmt.Println(TOPIC)fmt.Println(TOPIC["debug"])}

三、設定檔

檔案名稱:config.ini[topicArr]addr = 192.168.1.100debug = truelogin = LoginRequest[other]t1 = 0000337t2 = admin

四、簡介:

4.1首先通過config.ReadDefault(*configFile)開啟設定檔

4.2 然後判斷設定檔中一級標籤名是否存在if cfg.HasSection("topicArr") {}

4.2讀取一級標籤中的所有子標籤cfg.SectionOptions()

4.3迴圈一下子標籤,將子標籤中的值記錄在一個map中(TOPIC為全域變數),以備後面使用

for _, v := range section {    options, err := cfg.String("topicArr", v)        if err == nil {            TOPIC[v] = options        }}

根據自己的喜好來配吧

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.