本文介绍了在C ++中解析INI文件最简单的方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图使用C ++解析一个INI文件。任何提示,什么是最好的方法来实现这一点?我应该使用Windows API工具进行INI文件处理(我完全不熟悉),一个开源解决方案还是试图手动解析?
I'm trying to parse an INI file using C++. Any tips on what is the best way to achieve this? Should I use the Windows API tools for INI file processing (with which I am totally unfamiliar), an open-source solution or attempt to parse it manually?
推荐答案
您可以使用Windows API函数,例如和。
You can use the Windows API functions, such as GetPrivateProfileString() and GetPrivateProfileInt().
这篇关于在C ++中解析INI文件最简单的方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!