Gtk+/Glib下有什么实用函数,我们可以在其中读写配置文件吗?
我有一个配置文件,其中有键和值,如下所示:
key1=value1
key2=value2
key3=value3
那么 Gtk/Glib 中是否有任何实用程序函数可以读取该文件并检索与键对应的值?
I have a config file in which I have keys and values, like this:
key1=value1
key2=value2
key3=value3
So is there any utility functions in Gtk/Glib that can read this file and retrieve the value corresponds to key?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
glib 有一个键值文件解析器。它支持类似于众所周知的 INI 文件的语法。
这是文档的链接
glib has a Key-value-file-parser. It supports a syntax similar to the better known INI files.
Here's a link to the documentation