我无法使用这些Get*Profile
功能,因为我使用的是旧版本的 Windows CE 平台 SDK,它没有这些功能。它不必太笼统。
[section]
name = some string
我只需要打开文件,检查“section”是否存在,以及与“name”关联的值。首选标准 C++。
我想出了什么:
std::wifstream file(L"\\Windows\\myini.ini");
if (file)
{
bool section=false;
while (!file.eof())
{
WCHAR _line[256];
file.getline(_line, ELEMENTS(_line));
std::wstringstream lineStm(_line);
std::wstring &line=lineStm.str();
if (line.empty()) continue;
switch (line[0])
{
// new header
case L'[':
{
std::wstring header;
for (size_t i=1; i<line.length(); i++)
{
if (line[i]!=L']')
header.push_back(line[i]);
else
break;
}
if (header==L"Section")
section=true;
else
section=false;
}
break;
// comments
case ';':
case ' ':
case '#':
break;
// var=value
default:
{
if (!section) continue;
std::wstring name, dummy, value;
lineStm >> name >> dummy;
ws(lineStm);
WCHAR _value[256];
lineStm.getline(_value, ELEMENTS(_value));
value=_value;
}
}
}
}
你应该看看Boost.Program_options。它有一个填充变量映射的 parse_config_file 函数。正是你需要的!