GO高效读取配置--学习笔记

读取配置信息demo

首先,我们需要在任意目录创建两个文件(my.ini 和 main.go)

1.编辑 my.ini 文件并输入以下内容

# possible values : production, development
app_mode = development

[paths]
# Path to where grafana can store temp files, sessions, and the sqlite3 db (if that is used)
data = /home

[server]
# Protocol (http or https)
protocol = http

# The http port  to use
http_port = 6666

# Prevents DNS rebinding attacks
enforce_domain = true

2.接下来我们需要编写 main.go 文件来操作刚才创建的配置文件

package main

import (
    "fmt"
    "os"

    "gopkg.in/ini.v1"
)

func main() {
    
    
    cfg, err := ini.Load("my.ini")
    if err != nil {
    
    
        fmt.Printf("Fail to read file: %v", err)
        os.Exit(1)
    }

    // 典型读取操作,默认分区可以使用空字符串表示
    fmt.Println("App Mode:", cfg.Section("").Key("app_mode").String())
    fmt.Println("Data Path:", cfg.Section("paths").Key("data").String())

    // 我们可以做一些候选值限制的操作
    fmt.Println("Server Protocol:",
        cfg.Section("server").Key("protocol").In("http", []string{
    
    "http", "https"}))
    // 如果读取的值不在候选列表内,则会回退使用提供的默认值
    fmt.Println("Email Protocol:",
        cfg.Section("server").Key("protocol").In("smtp", []string{
    
    "imap", "smtp"}))

    // 试一试自动类型转换
    fmt.Printf("Port Number: (%[1]T) %[1]d\n", cfg.Section("server").Key("http_port").MustInt(9999))
    fmt.Printf("Enforce Domain: (%[1]T) %[1]v\n", cfg.Section("server").Key("enforce_domain").MustBool(false))

    // 差不多了,修改某个值然后进行保存
    cfg.Section("").Key("app_mode").SetValue("production")
    cfg.SaveTo("my.ini.local")
}

猜你喜欢

转载自blog.csdn.net/chenxuezhong0413/article/details/114650338