在 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 函数,例如 GetPrivateProfileString()GetPrivateProfileInt().

You can use the Windows API functions, such as GetPrivateProfileString() and GetPrivateProfileInt().