美文网首页基础知识我爱编程Golang
Golang-使用goconfig 读取配置文件

Golang-使用goconfig 读取配置文件

作者: yunpiao | 来源:发表于2018-08-07 11:05 被阅读1321次

    使用goconfig 读取ini 配置文件

    安装

    go get github.com/Unknwon/goconfig

    使用方法

    加载配置文件

    cfg, err := goconfig.LoadConfigFile("conf.ini")
    if err != nil{
        panic("错误")
    }
    
    [mysql]
    username=root
    password=123456
    url=(127.0.0.1:3306)/baidu
    [redis]
    address=127.0.0.1:6379
    

    读取

    读取单个值

    value, err := cfg.GetValue("mysql", "username")
    valut, err := cfg.Int("must", int)
    

    读取整个区

    sec err :== Cfg.GeSecion("mysql")
    

    其他API

    API 文档
    http://gowalker.org/github.com/Unknwon/goconfig

    相关文章

      网友评论

        本文标题:Golang-使用goconfig 读取配置文件

        本文链接:https://www.haomeiwen.com/subject/djnrfftx.html