doujiu9307 2013-05-21 23:11
浏览 42
已采纳

如何使用Go将JSON文件解析为结构

I'm trying to configure my Go program by creating a JSON file and parsing it into a struct:

var settings struct {
    serverMode bool
    sourceDir  string
    targetDir  string
}

func main() {

    // then config file settings

    configFile, err := os.Open("config.json")
    if err != nil {
        printError("opening config file", err.Error())
    }

    jsonParser := json.NewDecoder(configFile)
    if err = jsonParser.Decode(&settings); err != nil {
        printError("parsing config file", err.Error())
    }

    fmt.Printf("%v %s %s", settings.serverMode, settings.sourceDir, settings.targetDir)
    return
}

The config.json file:

{
    "serverMode": true,
    "sourceDir": ".",
    "targetDir": "."
}

The Program compiles and runs without any errors, but the print statement outputs:

false  

(false and two empty strings)

I've also tried with json.Unmarshal(..) but had the same result.

How do I parse the JSON in a way that fills the struct values?

  • 写回答

1条回答 默认 最新

  • douliedai4838 2013-05-21 23:14
    关注

    You're not exporting your struct elements. They all begin with a lower case letter.

    var settings struct {
        ServerMode bool `json:"serverMode"`
        SourceDir  string `json:"sourceDir"`
        TargetDir  string `json:"targetDir"`
    }
    

    Make the first letter of your stuct elements upper case to export them. The JSON encoder/decoder wont use struct elements which are not exported.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大