如何将Golang结构编码为TOML并使用BurntSushi / toml库写入文件?

时间:2019-12-12 20:03:50

标签: go toml

使用BurntSushi / toml库读取和解码TOML文件非常简单:

var config Config // struct that matches the structure of the TOML file
if _, 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

我想反过来:采用一个结构,将其编码为TOML并将其写入文件。

1 个答案:

答案 0 :(得分:1)

没有编码和写入文件的单一功能,因此您需要:

  1. 使用os.Create()
  2. 创建文件
  3. 使用toml.Encoder.Encode()
  4. 将结构编码到文件中

让我们假设我们有一个要以TOML格式写入文件的结构config


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)

}