golang讀取ini配置的pkg(讀取設定檔)

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

今天我寫了一個go讀取ini檔案的包,已經上傳到github上邊了,方便大家使用,主要是讀取設定檔的方法。下邊是簡單的文檔

The official website

描述

使用goini更簡單的讀取go的ini設定檔以及根據特定格式的各種設定檔。

安裝方法

gp get github.com/widuu/goini

使用方法

ini設定檔格式樣列

[database]username = rootpassword = passwordhostname = localhost[admin]username = rootpassword = password[nihao]username = rootpassword = password

初始化

conf := goini.SetConfig("./conf/conf.ini") //goini.SetConfig(filepath) 其中filepath是你ini 設定檔的所在位置

擷取單個配置資訊

username := conf.GetValue("database", "username") //database是你的[section],username是你要擷取值的key名稱fmt.Println(username) //root

刪除一個配置資訊

conf.DeleteValue("database", "username")    //username 是你刪除的keyusername = conf.GetValue("database", "username")if len(username) == 0 {    fmt.Println("username is not exists") //this stdout username is not exists}

添加一個配置資訊

conf.SetValue("database", "username", "widuu")username = conf.GetValue("database", "username")fmt.Println(username) //widuu 添加配置資訊如果存在[section]則添加或者修改對應的值,如果不存在則添加section

擷取所有配置資訊

conf.ReadList() //返回[]map[string]map[string]string的格式 即setion=>key->value

未經允許,不得轉載本站任何文章:微度網路 » golang讀取ini配置的pkg(讀取設定檔)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.