文件第10章.ppt

  1. 1、本文档共40页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
文件第10章

第 十 章;10.1 文件的基本概念;10.1 文件的基本概念;1.文本文件与二进制文件;例如:整数1234;2.缓冲区文件系统;3.文件类型指针;10.2 文件的基本操作;;文件打开方式;#include stdio.h void main() { FILE *fp; fp=fopen(myfirst.txt,r); if(fp == NULL) { printf(file can’t open!\n); getchar(); exit(0); } };文件使用完后,为确保文件中的数据不丢失,就要 使用文件关闭函数fclose()进行关闭,其功能是将使 用完后的文件写回到磁盘。 fclose(文件指针变量); fclose(fp);;10.2.2 文件的读写;1.字符读写函数fgetc()和fputc();例 输入5行字符,将其写入到C盘根目录的ex10-1.txt文件中。 #include stdio.h #include stdlib.h void main() { FILE* fp; char ch[80], *p=ch; int n; if((fp=fopen(c:\\ex10-1.txt, w))==NULL){ printf(Cannot open the file ,strike any key to exit!\n); getchar(); exit(0); } printf(Input a string:\n); for(n=1; n=5; n++) { gets(p); while(*p!=\0){ fputc(*p, fp); p++; } fputc(\n, fp); } fclose(fp); };例 从例10-1建立的文件ex10-1.txt中读出所有的字符并显示到屏幕上。 #include stdio.h #include stdlib.h void main(){ FILE* fp; char ch; int n; if((fp=fopen(c:\\ ex10-1.txt , r))==NULL){ printf(Cannot open the file ,strike any key to exit!\n); getchar(); exit(0); } ch=fgetc(fp); while(ch!=EOF) { putchar(ch); ch=fgetc(fp); } fclose(fp); };2.字符串读写;例:将字符串”Turbo C”、”Visual C++”、”FORTRUN”,写入文件ex10-3.txt中。 程序如下: #include stdio.h #include stdlib.h void main(){ FILE* fp; char str[][15]={Turbo C,Visual C++,FORTRUN,Visual Basic,C++,Java}; int i; if((fp=fopen(c:\\ ex10-3.txt , w))==NULL){ printf(Cannot open the file ,strike any key to exit!\n); getchar(); exit(0); } for(i = 0; i 6; i ++) { fputs(str[i], fp); fputs(\n, fp); } fclose(fp); };例: 从上例中的ex10-3.txt文件中读出各个字符串并将其中第1,3,5号字符串显示在屏幕上。 #include stdio.h #include stdlib.h void main( ) { FILE* fp; char str[6][15]; int i; if((fp=fopen(c:\\ ex10-3.txt , r))==NULL){ printf(Cannot open the file ,strike any key to exit!\n); getchar(); exit(0); } for(i = 0; i 6; i ++) { fgets(str[i],15,fp); if(i%2) printf(%s, str[i]); } fc

文档评论(0)

sy78219 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档