我想将 Config 对象(https://github.com/typesafehub/config)作为序列化字符串(可能是 JSON ??)保存,并在需要时将其读回。但是,我没有在支持的 Config api 文档上找到任何 API。对此的任何帮助表示赞赏。
我试过
config.toString
但结果看起来像
配置(SimpleConfigObject({...data}))
我想将 Config 对象(https://github.com/typesafehub/config)作为序列化字符串(可能是 JSON ??)保存,并在需要时将其读回。但是,我没有在支持的 Config api 文档上找到任何 API。对此的任何帮助表示赞赏。
我试过
config.toString
但结果看起来像
配置(SimpleConfigObject({...data}))
试试这个:
config.root().render(ConfigRenderOptions.concise())
当然你也可以调整一些参数,例如:
val renderOptions = ConfigRenderOptions
.defaults()
.setOriginComments(false)
.setComments(false)
.setFormatted(true)
println(config.root().render(renderOptions))