golang解析yaml文件操作

作者:思维的深度 时间:2024-05-21 10:31:30 

首先安装解析的第三方包:

go get gopkg.in/yaml.v2

示例:


package main
import (
"os"
"log"
"fmt"
"encoding/json"
"gopkg.in/yaml.v2"
)

type Config struct {
Test Test `yaml:"test"`
}

type Test struct {
User []string `yaml:"user"`
MQTT MQ `yaml:"mqtt"`
Http HTTP `yaml:"http"`
}

type HTTP struct {
Port string `yaml:"port"`
Host string `yaml:"host"`
}

type MQ struct {
Host string `yaml:"host"`
Username string `yaml:"username"`
Password string `yaml:"password"`
}

//read yaml config
//注:path为yaml或yml文件的路径
func ReadYamlConfig(path string) (*Config,error){
conf := &Config{}
if f, err := os.Open(path); err != nil {
 return nil,err
} else {
yaml.NewDecoder(f).Decode(conf)
}
return conf,nil
}

//test yaml
func main() {
conf,err := ReadYamlConfig("D:/test_yaml/test.yaml")
if err != nil {
log.Fatal(err)
}

byts,err := json.Marshal(conf)
if err != nil {
log.Fatal(err)
}

fmt.Println(string(byts))
}

test.yaml内容如下:


test:
user:
- Tom
- Lily
- Skay

mqtt:
 host: localhost:1883
 username: test
 password: test

http: {port: "8080", host: "127.0.0.1"}

运行结果:

{"Test":{"User":["Tom","Lily","Skay"],"MQTT":{"Host":"localhost:1883","Username":"test","Password":"test"},"Http":{"Port":"8080","Host":"127.0.0.1"}}}

补充:golang 读取yml格式,多结构体级联

1.安装yml解析包

进入到gopath下执行命令

go get gopkg.in/yaml.v2

源码地址https://github.com/go-yaml/yaml

2.设置配置文件config.yml


ipport: 192.168.2.95:10000
startsendtime: 2017-01-02 08:08:08
sendmaxcountperday: 100
devices:
- devid: 123456789
nodes:
- pkid: 0
 bkid: 0
 index: 0
 minvalue: 0
 maxvalue: 60
 datatype: normal
- pkid: 0
 bkid: 0
 index: 0
 datatype: boolean
- devid: 10001
nodes:
- pkid: 0
 bkid: 1
 index: 0
 datatype: boolean
warnfrequency: 10
sendfrequency: 10

3.编写测试类


package main
import (
 "fmt"
 "gopkg.in/yaml.v2"
 "io/ioutil"
)

//配置文件中字母要小写,结构体属性首字母要大写

type Myconf struct {
 Ipport  string
 StartSendTime string
 SendMaxCountPerDay int
 Devices []Device
 WarnFrequency int
 SendFrequency int
}
type Device struct {
 DevId string
 Nodes []Node
}
type Node struct {
 PkId string
 BkId string
 Index string
 MinValue float32
 MaxValue float32
 DataType string
}

func main() {
 data, _ := ioutil.ReadFile("config.yml")
 fmt.Println(string(data))
 t := Myconf{}
 //把yaml形式的字符串解析成struct类型
 yaml.Unmarshal(data, &t)
 fmt.Println("初始数据", t)
 if(t.Ipport==""){
   fmt.Println("配置文件设置错误")
   return;
 }
 d, _ := yaml.Marshal(&t)
 fmt.Println("看看 :", string(d))
}

4.注意

1.配置文件中字母要小写,结构体属性首字母要大写,开发比较快

也可以指定如:yaml:"c",只不过有点麻烦,当然如果重命名必须要指定

2.yaml:",flow"

这个意思是将数组用[“a”,”b”]这样的格式展示,默认展示形式是

- a

- b

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

来源:https://skaygo.blog.csdn.net/article/details/85791430

标签:golang,yaml
0
投稿

猜你喜欢

  • vue实现全屏滚动效果(非fullpage.js)

    2024-05-28 15:46:00
  • 将Django使用的数据库从MySQL迁移到PostgreSQL的教程

    2024-01-26 20:09:26
  • matplotlib调整子图间距,调整整体空白的方法

    2021-12-17 15:06:58
  • Python3.5内置模块之os模块、sys模块、shutil模块用法实例分析

    2022-08-29 11:18:20
  • python使用pil生成缩略图的方法

    2022-06-07 13:07:44
  • sql2005 HashBytes 加密函数

    2024-01-21 11:28:23
  • mysql 8.0.21免安装版配置方法图文教程

    2024-01-23 17:52:53
  • pycharm2021激活码使用教程(永久激活亲测可用)

    2022-02-05 05:02:17
  • 详解vue-router 2.0 常用基础知识点之router.push()

    2024-04-09 10:49:35
  • 详解php如何合并身份证正反面图片为一张图片

    2023-05-22 10:44:46
  • git基础之各版本控制系统介绍

    2022-02-14 02:16:03
  • 关于PyTorch环境配置及安装教程(Windows10)

    2021-04-23 09:04:31
  • Python:type、object、class与内置类型实例

    2023-09-27 08:51:27
  • CSS经验:因为编码差异 导致IE6不能正常解析CSS文件

    2010-06-06 13:55:00
  • Java实现学生信息管理系统(使用数据库)

    2024-01-25 11:22:03
  • Mysql InnoDB多版本并发控制MVCC详解

    2024-01-23 16:46:25
  • 妙用Dreamweaver MX共享WPS Office文件

    2010-09-05 21:18:00
  • Python实现网站注册验证码生成类

    2023-10-24 13:58:02
  • django model通过字典更新数据实例

    2021-08-15 13:00:15
  • 常用原生js自定义函数总结

    2024-04-16 09:05:57
  • asp之家 网络编程 m.aspxhome.com