第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何將 golang 結(jié)構(gòu)編碼為 TOML 并使用 BurntSushi/toml 庫寫入文件?

如何將 golang 結(jié)構(gòu)編碼為 TOML 并使用 BurntSushi/toml 庫寫入文件?

Go
德瑪西亞99 2023-08-14 14:54:39
使用 BurntSushi/toml 庫讀取和解碼 TOML 文件非常簡(jiǎn)單:var config Config // struct that matches the structure of the TOML fileif _, err := toml.DecodeFile("path/to/file.toml", &config); err != nil {    // failed to read and decode the file    fmt.Fatal(err)}// at this point config struct contains the values from the file我想做相反的事情:獲取一個(gè)結(jié)構(gòu),將其編碼為 TOML 并將其寫入文件。
查看完整描述

1 回答

?
智慧大石

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超3個(gè)贊

沒有單個(gè)函數(shù)可以編碼和寫入文件,因此您需要:

  1. 使用創(chuàng)建文件os.Create()

  2. 使用以下命令將結(jié)構(gòu)編碼到文件中toml.Encoder.Encode()

假設(shè)我們有一個(gè)結(jié)構(gòu)體config想要以 TOML 格式寫入文件:

f, err := os.Create("path/to/file.toml")

if err != nil {

    // failed to create/open the file

    log.Fatal(err)

}

if err := toml.NewEncoder(f).Encode(config); err != nil {

    // failed to encode

    log.Fatal(err)

}

if err := f.Close(); err != nil {

    // failed to close the file

    log.Fatal(err)


}


查看完整回答
反對(duì) 回復(fù) 2023-08-14
  • 1 回答
  • 0 關(guān)注
  • 246 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)