解决C++ fopen按行读取文件及所读取的数据问题

时间:2022-06-28 08:58:11

1、已有文本文件:

?
1
string dataList;

使用fopen读取:

?
1
2
3
4
5
FILE *fpListFile = fopen(dataList.c_str(), "r");
if (!fpListFile){
    cout << "0.can't open " << dataList << endl;
    return -1;
}

2、按行读取数据:

方法一:

?
1
2
3
4
5
char loadImgPath[1000];
while(EOF != fscanf(fpListFile, "%s", loadImgPath))
{
 ...
}

其中,loadImgPath不能使用string类型,即使用loadImgPath.c_str()接收数据也不行,否则读取内容为空;

方法二:

?
1
2
3
4
5
6
char buff[1000];
while(fgets(buff, 1000 ,fpListFile) != NULL)
{
 char *pstr = strtok(buff, "\n");
 ...
}

其中,buff接收的数据包括了换行符,所以在使用之前需先将删除换行符。

以上这篇解决C++ fopen按行读取文件及所读取的数据问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/u010555688/article/details/60148084