分享
  1. 首页
  2. 文章

go 读取 ini文件 并修改

295631788 · · 4653 次点击 · · 开始浏览
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

go 读取 ini文件 并修改

安装

官方网站
https://ini.unknwon.io/docs/intro/getting_started
go get gopkg.in/ini.v1

配置

tmp
 my.ini
 main.go
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/git/grafana
[server]
# Protocol (http or https)
protocol = http
# The http port to use
http_port = 9999
# Redirect to correct domain if host header does not match domain
# Prevents DNS rebinding attacks
enforce_domain = true
main.go
package main
import (
 "fmt"
 "os"
 "gopkg.in/ini.v1"
)
func main() {
 dir, _ := os.Getwd()
 fmt.Println(dir)
 path := dir + "\\src\\test\\tmp\\" // windows下的路径 需要注意修改一下 默认是gopath
 path_name := path + "my.ini"
 cfg, err := ini.Load(path_name)
 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(path+"my.ini.local")
}
注意路径

结果

App Mode: development
Data Path: /home/git/grafana
Server Protocol: http
Email Protocol: smtp
Port Number: (int) 9999
Enforce Domain: (bool) true

有疑问加站长微信联系(非本文作者)

本文来自:51CTO博客

感谢作者:295631788

查看原文:go 读取 ini文件 并修改

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

关注微信
4653 次点击
1 回复 | 直到 2025年05月15日 09:03:25
暂无回复
添加一条新回复 (您需要 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传

用户登录

没有账号?注册
(追記) (追記ここまで)

今日阅读排行

    加载中
(追記) (追記ここまで)

一周阅读排行

    加载中

关注我

  • 扫码关注领全套学习资料 关注微信公众号
  • 加入 QQ 群:
    • 192706294(已满)
    • 731990104(已满)
    • 798786647(已满)
    • 729884609(已满)
    • 977810755(已满)
    • 815126783(已满)
    • 812540095(已满)
    • 1006366459(已满)
    • 692541889

  • 关注微信公众号
  • 加入微信群:liuxiaoyan-s,备注入群
  • 也欢迎加入知识星球 Go粉丝们(免费)

给该专栏投稿 写篇新文章

每篇文章有总共有 5 次投稿机会

收入到我管理的专栏 新建专栏