c++读取ini文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++读取ini文件相关的知识,希望对你有一定的参考价值。
我的配置文件格式是
[JP]
K=2EC156673E 2F4240 5595F6
char str[50];
GetPrivateProfileString("JP", "K",NULL, str, sizeof(str),".\\keydog.ini");
得到str后想将其分成三个字符串
str1=2EC156673E
str2=2F4240
str3=5595F6
并且在后面的函数中当做参数用
各位大虾给实现一下吧 谢谢!!!
基于api的c++编程 在线等 急求!!!
我是菜鸟 最好能给我写一下 !
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip.h>
using namespace std;
int read_file(char *file, char *key)
ifstream file_op(file, ios::in);
if (!file_op)
cout<<"Can not open file"<<endl;
return EXIT_FAILURE;
string line;
while (getline(file_op, line) )
int i = line.find(key, 0);//从0位开始找
if (i==0) //找到了key值
int k = line.find("=", 0);//找等于号
string value=line.substr(k+1);//取等于号后边的值
cout<<value<<endl;
file_op.close();
return 0;
int main()
int i = read_file("D:\\\\TEST.ini", ";APVersion");
return i;
参考技术A 费劲。。楼主不是已经得到了“2EC156673E 2F4240 5595F6”这个字符串了么
就是要以空格为界 分成3个子串。
char * str1 = strtok(str , " ");
char * str2 = strtok(NULL, " ");
char * str3 = strtok(NULL, " "); 参考技术B http://www.cppblog.com/alantop/archive/2007/07/19/28337.aspx
的确不错,用CARCHIVE同样可以轻松实现 参考技术C http://www.cppblog.com/alantop/archive/2007/07/19/28337.aspx 参考技术D 第一种方法用MFC
得有这句#include <afx.h>和包含mfc库
CString sz;
GetPrivateProfileString("JP", "K", NULL, sz.GetBuffer(50), 50, "./keydog.ini");
sz.ReleaseBuffer();
int nPos = 0;
CString sz1, sz2, sz3;
sz1 = sz.Tokenize(" ", nPos);
sz2 = sz.Tokenize(" ", nPos);
sz3 = sz.Tokenize(" ", nPos);
第二种用标准c++
得#include <string> 和using std::string;
string str(50, 0);
GetPrivateProfileString("JP", "K", NULL, (char*)str.c_str(), 50, "./keydog.ini");
string sz1, sz2, sz3;
int nBegin = 0, nEnd = str.find(' ', nBegin);
sz1 = str.substr(nBegin, nEnd - nBegin);
nBegin = nEnd + 1, nEnd = str.find(' ', nBegin);
sz2 = str.substr(nBegin, nEnd - nBegin);
nBegin = nEnd + 1, nEnd = str.find(' ', nBegin);
sz3 = str.substr(nBegin, nEnd - nBegin);
第三种纯c吧...
得#include <string.h>
char str[50] = 0;
GetPrivateProfileString("JP", "K", NULL, str, sizeof(str),".\\keydog.ini");
char sz1[50] = 0, sz2[50] = 0, sz3[50] = 0;
sscanf( str, "%[^' ']", sz1);
sscanf( str + strlen(sz1) + 1, "%[^' ']", sz2);
sscanf( str + + strlen(sz1) + strlen(sz2) + 2, "%[^' ']", sz3);
再给个傻瓜版c代码吧, 因为str1等没有另外给空间, 看你怎么用了
#include <stdio.h>
#include <windows.h>
int main()
char str[50], *str1, *str2, *str3;
GetPrivateProfileString("JP", "K",NULL, str, sizeof(str),".\\keydog.ini");
str2 = str1 = str;
while( ' ' != *++str2);
*str2++ = 0;
for( str3 = str2; ' ' != *++str3; );
*str3++ = 0;
return 0;
本回答被提问者采纳
以上是关于c++读取ini文件的主要内容,如果未能解决你的问题,请参考以下文章