本篇内容介绍了“Golang语言怎么用Yaml配置文件”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
项目开发中,解析配置文件,是必不可少的,本篇将展示实际开发中,解析Yaml配置文件的案列。
Yaml配置文件展示:
mysql: url : "root@(127.0.0.1:3306)/IPInfoDb?charset=utf8&parseTime=True&loc=Local" dev: httpaddr : "0.0.0.0" httpport : 80
Golang语言解析代码展示
import "gopkg.in/yaml.v2" type YamlConf struct { MySql struct { Url string `yaml:"url"` } Dev struct { HttpAddr string `yaml:"httpaddr"` HttpPort string `yaml:"httpport"` } } func (this *YamlConf) GetConf() *YamlConf { YamlConf:=new(YamlConf) yamlFile, err := ioutil.ReadFile("/media/data/GoProject/IpInfoProject/src/conf/app.yaml") if err != nil { log.Printf("yaml open err is : \n %v \n", err) } err = yaml.Unmarshal(yamlFile, YamlConf) if err !=nil{ log.Printf("unmarshel err is \n %v \n",err) } return YamlConf }