读取文件内容
Posted sunnybowen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取文件内容相关的知识,希望对你有一定的参考价值。
#include<stdio.h> int main(void){ FILE *fp;//定义指针 char ch; if((fp=fopen("d:\\yy.txt","r"))==NULL){// printf("cannot open file,press any key to exit!"); exit(0); } while((ch=fgetc(fp))!=EOF){ fputc(ch,stdout); } fclose(fp); }
以上是关于读取文件内容的主要内容,如果未能解决你的问题,请参考以下文章
solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例