What is the easiest way to parse an INI File in C++?(在 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().
这篇关于在 C++ 中解析 INI 文件的最简单方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中解析 INI 文件的最简单方法是什么?


- 静态初始化顺序失败 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 近似搜索的工作原理 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- C++ 协变模板 2021-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 从python回调到c++的选项 2022-11-16
- 使用/clr 时出现 LNK2022 错误 2022-01-01