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?
|
feedback
|
|
You can use the Windows API functions, such as GetPrivateProfileString() and GetPrivateProfileInt(). | |||
|
feedback
|
|
If you need a cross-platform solution, try Boost's Program Options library. | |||||||||||
feedback
|
|
I have never parsed ini files, so I can't be too specific on this issue. http://en.wikipedia.org/wiki/INI_file#Accessing_INI_files Good luck :) | ||||
|
feedback
|
|
Have you tried libconfig; very JSON-like syntax. I prefer it over XML configuration files. | |||
|
feedback
|
|
this question is a bit old, but I will post my answer. I have tested various INI classes (you can see them on my website) and I also use simpleIni because I want to work with INI files on both windows and winCE. Window's GetPrivateProfileString() works only with the registry on winCE. It is very easy to read with simpleIni. Here is an example:
| |||
|
feedback
|
|
If you are already using Qt
Then read a value
There are a bunch of other converter that convert your INI values into both standard types and Qt types. See Qt documentation on QSettings for more information. | ||||
|
feedback
|
|
Unless you plan on making the app cross-platform, using the Windows API calls would be the best way to go. Just ignore the note in the API documentation about being provided only for 16-bit app compatibility. | |||
|
feedback
|