go读取ini配置文件 今天我写了一个go读取ini文件的包,已经上传到github上边了,方便大家使用,主要是读取配置文件的方法。下边是简单的文档

Build Status

The official website

描述

使用goini更简单的读取go的ini配置文件以及根据特定格式的各种配置文件。

安装方法

gp get github.com/widuu/goini

使用方法

ini配置文件格式样列

[database]
username = root
password = password
hostname = localhost

[admin]
username = root
password = password

[nihao]
username = root
password = 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 是你删除的key
username = 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

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部