【學習筆記】golang第三方庫goconfig的使用

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

如何獲得goconfig第三方包

在git shell中使用go get github.com/Unknwon/goconfig安裝goconfig包

如何使用goconfig

package mainimport (    "fmt"    "github.com/Unknwon/goconfig"    "log")func main() {    cfg, err := goconfig.LoadConfigFile("config.ini")    if err != nil {        log.Println("讀取設定檔失敗[conf.ini]")        return    }    str, _ := cfg.GetValue(goconfig.DEFAULT_SECTION, "default_key")    fmt.Printf("%s\n", str)}

goconfig包提供如下函數:

  • Variables

  • func SaveConfigFile(c *ConfigFile, filename string) (err error)

  • type ConfigFile

    • func LoadConfigFile(fileName string, moreFiles ...string) (c *ConfigFile, err error)

    • func (c *ConfigFile) AppendFiles(files ...string) error

    • func (c *ConfigFile) Bool(section, key string) (bool, error)

    • func (c *ConfigFile) DeleteKey(section, key string) bool

    • func (c *ConfigFile) Float64(section, key string) (float64, error)

    • func (c *ConfigFile) GetKeyComments(section, key string) (comments string)

    • func (c *ConfigFile) GetSection(section string) (map[string]string, error)

    • func (c *ConfigFile) GetSectionComments(section string) (comments string)

    • func (c *ConfigFile) GetValue(section, key string) (string, error)

    • func (c *ConfigFile) Int(section, key string) (int, error)

    • func (c *ConfigFile) Int64(section, key string) (int64, error)

    • func (c *ConfigFile) MustBool(section, key string, defaultVal ...bool) bool

    • func (c *ConfigFile) MustFloat64(section, key string, defaultVal ...float64) float64

    • func (c *ConfigFile) MustInt(section, key string, defaultVal ...int) int

    • func (c *ConfigFile) MustInt64(section, key string, defaultVal ...int64) int64

    • func (c *ConfigFile) MustValue(section, key string, defaultVal ...string) string

    • func (c *ConfigFile) Reload() (err error)

    • func (c *ConfigFile) SetKeyComments(section, key, comments string) bool

    • func (c *ConfigFile) SetSectionComments(section, comments string) bool

    • func (c *ConfigFile) SetValue(section, key, value string) bool

總的來說,goconfig包基本滿足對ini等設定檔讀取需求,當然該包還提供很多其他的特性,進一步的學習,請查看

有無聞提供的學習視頻http://www.ucai.cn/course/chapter/134/3701/6833

相關文章

聯繫我們

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