C语言 fgets函数读取CSV文件如何从第二行开始,第一行是表头。 15
CSV文件如下:nametext"xm""ddd""xw""www""xh""qqq"我要去掉name和text这一行,直接从xm开始读取。...
CSV文件如下:
name text
"xm" "ddd"
"xw" "www"
"xh" "qqq"
我要去掉name和text这一行,直接从xm开始读取。 展开
name text
"xm" "ddd"
"xw" "www"
"xh" "qqq"
我要去掉name和text这一行,直接从xm开始读取。 展开
2个回答
展开全部
第一次获取的数据不要就可以了,何必这么麻烦。
函数原型:
char *fgets(char *buf, int bufsize, FILE *stream);
参数:
*buf: 字符型指针,指向用来存储所得数据的地址。
bufsize: 整型数据,指明存储数据的大小。
*stream: 文件结构体指针,将要读取的文件流。
返回值:
成功,则返回第一个参数buf;
在读字符时遇到end-of-file,则eof指示器被设置,如果还没读入任何字符就遇到这种情况,则buf保持原来的内容,返回NULL;
如果发生读入错误,error指示器被设置,返回NULL,buf的值可能被改变。
例子:
#include<string.h>
#include<stdio.h>
int main ( void )
{
FILE*stream;
char string[]="Thisisatest";
char msg[20];
/*openafileforupdate*/
stream=fopen("DUMMY.FIL","w+");
/*writeastringintothefile*/
fwrite(string,strlen(string),1,stream);
/*seektothestartofthefile*/
fseek(stream,0,SEEK_SET);
/*readastringfromthefile*/
fgets(msg,strlen(string)+1,stream);
/*displaythestring*/
printf("%s",msg);
fclose(stream);
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询