日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

go 默认http版本_【每日一库】超赞的 Go 语言 INI 文件操作

發(fā)布時(shí)間:2024/7/23 编程问答 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 go 默认http版本_【每日一库】超赞的 Go 语言 INI 文件操作 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

點(diǎn)擊上方藍(lán)色“Go語(yǔ)言中文網(wǎng)”關(guān)注我們,領(lǐng)全套Go資料,每天學(xué)習(xí)?Go?語(yǔ)言

如果你使用 INI 作為系統(tǒng)的配置文件,那么一定會(huì)使用這個(gè)庫(kù)吧。沒(méi)錯(cuò),它就是號(hào)稱地表?最強(qiáng)大最方便?和?最流行?的 Go 語(yǔ)言 INI 文件操作庫(kù):https://github.com/go-ini/ini。

該項(xiàng)目的作者也是很多 Go 語(yǔ)言愛(ài)好者熟悉的無(wú)聞大師。講真,文檔都寫的很好,很用心。官方網(wǎng)站:https://ini.unknwon.io/

功能特性

  • 支持覆蓋加載多個(gè)數(shù)據(jù)源([]byte、文件和?io.ReadCloser)
  • 支持遞歸讀取鍵值
  • 支持讀取父子分區(qū)
  • 支持讀取自增鍵名
  • 支持讀取多行的鍵值
  • 支持大量輔助方法
  • 支持在讀取時(shí)直接轉(zhuǎn)換為 Go 語(yǔ)言類型
  • 支持讀取和?寫入?分區(qū)和鍵的注釋
  • 輕松操作分區(qū)、鍵值和注釋
  • 在保存文件時(shí)分區(qū)和鍵值會(huì)保持原有的順序

下載安裝

最低要求安裝 Go 語(yǔ)言版本為?1.6

$ go get -u gopkg.in/ini.v1

開(kāi)始使用

我們將通過(guò)一個(gè)非常簡(jiǎn)單的例子來(lái)了解如何使用。

首先,我們需要在任意目錄創(chuàng)建兩個(gè)文件(my.ini?和?main.go),在這里我們選擇?/tmp/ini?目錄。

$ mkdir -p /tmp/ini
$ cd /tmp/ini
$ touch my.ini main.go
$ tree .
.
├── main.go
└── my.ini

0 directories, 2 files

現(xiàn)在,我們編輯?my.ini?文件并輸入以下內(nèi)容(部分內(nèi)容來(lái)自 Grafana)。

# 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

很好,接下來(lái)我們需要編寫?main.go?文件來(lái)操作剛才創(chuàng)建的配置文件。

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)
}

// 典型讀取操作,默認(rèn)分區(qū)可以使用空字符串表示
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"}))
// 如果讀取的值不在候選列表內(nèi),則會(huì)回退使用提供的默認(rèn)值
fmt.Println("Email Protocol:",
cfg.Section("server").Key("protocol").In("smtp", []string{"imap", "smtp"}))

// 試一試自動(dòng)類型轉(zhuǎn)換
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))

// 差不多了,修改某個(gè)值然后進(jìn)行保存
cfg.Section("").Key("app_mode").SetValue("production")
cfg.SaveTo("my.ini.local")
}

運(yùn)行程序,我們可以看下以下輸出:

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

$ cat my.ini.local
# possible values : production, development
app_mode = production

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

完美!這個(gè)例子很簡(jiǎn)單,展示的也只是極其小部分的功能,想要完全掌握還需要多讀多看,畢竟學(xué)無(wú)止境嘛。

推薦閱讀

  • 【每日一庫(kù)】解析和提交 HTML 表單的庫(kù):gosubmit


喜歡本文的朋友,歡迎關(guān)注“Go語(yǔ)言中文網(wǎng)”:

Go語(yǔ)言中文網(wǎng)啟用微信學(xué)習(xí)交流群,歡迎加微信:274768166,投稿亦歡迎

總結(jié)

以上是生活随笔為你收集整理的go 默认http版本_【每日一库】超赞的 Go 语言 INI 文件操作的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。