c读取文件的内容|C语言文件的文本怎么读取

c读取文件的内容|C语言文件的文本怎么读取的第1张示图

⑴ C语言如何读取txt文本里面的内容

C语言可以使用fopen()函数读取txt文本里。

示例:

#include <stdio.h>

FILE *stream, *stream2;

void main( void )

{

int numclosed;

/* Open for read (will fail if file "data" does not exist) */

if( (stream = fopen( "data", "r" )) == NULL )

printf( "The file 'data' was not opened" );

else

printf( "The file 'data' was opened" );

/* Open for write */

if( (stream2 = fopen( "data2", "w+" )) == NULL )

printf( "The file 'data2' was not opened" );

else

printf( "The file 'data2' was opened" );

/* Close stream */

if(fclose( stream2 ))

printf( "The file 'data2' was not closed" );

/* All other files are closed: */

numclosed = _fcloseall( );

printf( "Number of files closed by _fcloseall: %u", numclosed );

}

(1)c读取文件的内容扩展阅读

使用fgetc函数

#include <stdio.h>

#include <stdlib.h>

void main( void )

{

FILE *stream;

char buffer[81];

int i, ch;

/* Open file to read line from: */

if( (stream = fopen( "fgetc.c", "r" )) == NULL )

exit( 0 );

/* Read in first 80 characters and place them in "buffer": */

ch = fgetc( stream );

for( i=0; (i < 80 ) && ( feof( stream ) == 0 ); i++ )

{

buffer[i] = (char)ch;

ch = fgetc( stream );

}

/* Add null to end string */

buffer[i] = '';

printf( "%s", buffer );

fclose( stream );

}

⑵ c语言 如何只读取文件部分内容

读出来不要就行了啊

假设你的文件是t1.txt,在d:存放,把前面两个字段存到内另一个文件容t2.txt里

#include<stdio.h>intmain(){FILE*fpi,*fpo;chars1[30];chars2[30];charoo[30];fpi=fopen("d:\t1.txt","r");if(!fpi){printf("打开源文件失败");return555;}fpo=fopen("d:\t2.txt","w");if(!fpo){printf("打开目标文件失败");return333;}while(!feof(fpi)){fscanf(fpi,"%s%s%s",s1,s2,oo);fprintf(fpo,"%s%s",s1,s2);//不要oo了}fclose(fpi);fclose(fpo);return0;}

⑶ c语言读取文本文件

1、C语言标准库提供了一系列文件操作函数。文件操作函数一般以f+单词的形式来命名(f是file的简写),其声明位于stdio.h头文件当中。例如:fopen、fclose函数用于文件打开与关闭;fscanf、fgets函数用于文件读取;fprintf、fputs函数用于文件写入;ftell、fseek函数用于文件操作位置的获取与设置。2、例程:

#include<stdio.h>inta;charb,c[100];intmain(){FILE*fp1=fopen("input.txt","r");//打开输入文件FILE*fp2=fopen("output.txt","w");//打开输出文件if(fp1==NULL||fp2==NULL){//若打开文件失败则退出puts("不能打开文件!");rturn0;}fscanf(fp1,"%d",&a);//从输入文件读取一个整数b=fgetc(fp1);//从输入文件读取一个字符fgets(c,100,fp1);//从输入文件读取一行字符串printf("%ld",ftell(fp1));//输出fp1指针当前位置相对于文件首的偏移字节数fputs(c,fp2);//向输出文件写入一行字符串fputc(b,fp2);//向输出文件写入一个字符fprintf(fp2,"%d",a);//向输出文件写入一个整数fclose(fp1);//关闭输入文件fclose(fp2);//关闭输出文件,相当于保存return0;}

⑷ c语言中读取txt文件内容

intInput1(DoubleListL)//输入加数1{DNode*p,*s;p=L;FILE*pf;chare;if((pf=fopen("E:\add1.dat","r"))==NULL){printf("未找到该文件!");return(-1);}while(feof(pf)==0){s=(DNode*)malloc(sizeof(DNode));if(s!=NULL){if(fscanf(pf,"%1c",&e)!=EOF){(*s).data=e;(*s).prior=p;(*s).next=NULL;(*p).next=s;p=(*p).next;}}else{printf("申请内存失败!");return(-1);}}fclose(pf);return(1);}

有问题可以问

⑸ C语言中读取txt文件内容

楼主朋友,你的程序中的问题出在分配空间不足上。比如当你想让a[j]指向某段内存时,用的是 a[j]=(char *)malloc(sizeof(char)); 而到了后面你是要在这段内存中存入一个字符串的,所以就发生了越界。下面是我根据你的代码片段写的一个测试程序,经过修改应该没问题了。#include <stdio.h>#include <stdlib.h>int main (void){ char path[]="12345.txt"; FILE *create; if((create=fopen(path,"r"))!=NULL) { int j; char **a; a=(char **)malloc(100*sizeof(char*)); //此处如果只申请一个char *大小的空间时, //你以后的a[j]往哪里放?此处的100是假设你的文件中有100行信息。如果超过100还得多分配 for (j=0;;j++) { a[j]=(char *)malloc(10000*sizeof(char)); //此处只申请一个字符的空间,后面读取 //长度为10000的字符串就没地方存放了 fgets(a[j],10000,create); printf("%s",a[j]); //测试读取是否成功,将文件中信息显示到屏幕上 if(feof(create)!=0) { for(;j=0;j–) free(a[j]); break; } } free(a); } else printf("Fail to open the file.\n"); fclose(create); printf("\n");}

⑹ C语言如何读取文件

C语言读取文件的抄具体步骤如下:

我们需要准备的材料分别是:电脑、C语言。

1、首先我们打开需要读取的文件,点击打开左上角文件中的“另存为”。

⑺ C语言文件的文本怎么读取

根据你给的文件保存的数据的格式,我猜测每一行是一个学生的信息,格式如下:

序号 姓名 成绩1 成绩2 成绩3 …

知道了题意和题目要求,那么一切将会变得简单起来,请看代码。

#include<stdio.h>#defineREAD_FILE"data.txt"/*要读取的文件的名字*/#defineWRITE_FILE"T_data.txt"/*要写入的文件的名字*/#defineSTU_NUM10/*最大学生人数*/#defineMAX_LEN50/*一行的最大字符数*//**获取总分函数*/intget_sum(charconst*msg){intsum=0;inttmp;/**遍历一行字符*/while(*msg!=''){/**以空格为一项成绩的分隔标志*/tmp=0;while(*msg!=''&&*msg!=''){/**char类型数字转int类型数字*/tmp=(tmp*10)+((*msg)-'0');msg++;}/**求总和*/sum+=tmp;if(*msg==''){break;}msg++;}returnsum;}intmain(void){FILE*rfp,*wfp;/*声明读取/写入文件指针*/charstudent[STU_NUM][MAX_LEN];/*存放读取到的数据缓存数组*/charch;intsum[STU_NUM];/*成绩总和*/inti=0;intj=0;intk=0;rfp=fopen(READ_FILE,"r");/*打开数据文件*/if(rfp==NULL){perror(READ_FILE);exit(1);}for(i=0;i<STU_NUM;i++){sum[i]=0;}/**逐个字符读取文件的内容,*直至遇到文件结束符为止。*/i=0;while((ch=fgetc(rfp))!=EOF){/**遇到换行符表示已经读取完一个学生的资料;*否则继续将数据写入缓存数组中。*/if(ch==''){student[i][j]='';j=0;i+=1;}else{student[i][j++]=ch;}}student[i][j]='';wfp=fopen(WRITE_FILE,"w");/**开始分析数据*根据文件存放数据的格式,从下标为2的位置开始分析数据。*当遇到空格时证明后面的数据是成绩,每一科成绩分数均以空格分开。*printf是显示出来。*fprintf是写入另一个文件。*/for(j=0;j<=i;j++){k=2;printf("%c%c",student[j][0],student[j][1]);fprintf(wfp,"%c%c",student[j][0],student[j][1]);while(student[j][k]!=''){printf("%c",student[j][k]);fprintf(wfp,"%c",student[j][k]);k++;}printf("'ssumofscoresumis");fprintf(wfp,"'ssumofscoresumis");sum[j]=get_sum(&student[j][k]);printf("%d",sum[j]);fprintf(wfp,"%d",sum[j]);}/**记得关闭文件哦。*/fclose(rfp);fclose(wfp);return0;}

以下是运行结果:

这个程序仅仅是针对你的题目要求来的,文件存放的数据格式不能更改,否则会出错。每一行必须以回车键结束,最后一行的最后一个字符之后什么也不能有。我尽量以你看得懂的方法来写,关键部分都带有注释,有问题不要追问了,自己多思考思考,实在解决不来还是很欢迎可以追问的哦,哈哈哈!!!

⑻ 用C/C++ 读取文件内内容

#include <stdio.h>#include <string.h>void main(){ FILE *fp; int i = 0; char c = ' ', name[10], temp[10]; fp = fopen("data.txt", "r"); printf("请输入您要查询的姓名:"); scanf("%s", name); c = fgetc(fp); while (c != EOF) { for (i = 0; c != ' '; i++) { temp[i] = c; c = fgetc(fp); } temp[i] = '\0'; c = fgetc(fp); if (!strcmp(name, temp)) { printf("number is: "); while (c != '\n' && c != EOF) { printf("%c", c); c = fgetc(fp); } printf("\n"); break; } else { while (c != '\n' && c != EOF) { c = fgetc(fp); } if (c != EOF) { c = fgetc(fp); } else { printf("未查找到该用户!!!\n"); break; } } } fclose(fp);}________________________________________________________这样就可以兼容你那问题了!!#include <stdio.h>#include <string.h>void main(){ FILE *fp; int i = 0; char c = ' ', name[10], temp[10]; fp = fopen("data.txt", "r"); printf("请输入您要查询的姓名:"); scanf("%s", name); c = fgetc(fp); while (c != EOF) { for (i = 0; c != ' '; i++) { temp[i] = c; c = fgetc(fp); } temp[i] = '\0'; while (c == ' ') { c = fgetc(fp); } if (!strcmp(name, temp)) { printf("number is: "); while (c != '\n' && c != EOF) { printf("%c", c); c = fgetc(fp); } printf("\n"); break; } else { while (c != '\n' && c != EOF) { c = fgetc(fp); } if (c != EOF) { c = fgetc(fp); } else { printf("未查找到该用户!!!\n"); break; } } } fclose(fp);}

⑼ C语言:读取文件中内容

写函数:open()write()close()读函数:open()read()close()程序就是这样,具体细节还需要自己去写。祝你好运

未经允许不得转载:山九号 » c读取文件的内容|C语言文件的文本怎么读取

赞 (0)