存储某些配置的文件格式
我想知道我可以使用哪种文件格式来存储(并轻松解析和读取)某些配置项及其值。 eoption 上是 INI 文件。还有其他选项,例如 .opt 文件吗?
编辑: 我用的是C语言。
I would like to know which file format i can use to store(and easily parse and read) certain configuration items and their values. On eoption is INI file. Is there any other option like .opt file?
EDIT:
I am using C language.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 XML。它有多种语言的实现,并且非常容易解析和创建。
但这很大程度上与您使用的语言有关。
http://www.w3schools.com/xml/default.asp
Look into XML. It's got implementations in many languages and is pretty easy to parse and create.
But a lot of it has to do with what language you're using.
http://www.w3schools.com/xml/default.asp
就我个人而言,我喜欢使用 XML 文件作为配置选项。大多数非高级用户可以相对容易地理解它们,并且有许多库使它们非常容易解析。
Personally, I like to use XML files for configuration options. Most non-power users can understand them relatively easy enough and there are many libraries out there that make them super easy to parse.