在C中按字符打印文件(任意长度)

时间:2010-09-25 17:47:07

标签: c file

有没有办法逐个字符地打印整个文件,而不知道它的长度或担心它有多少行?

现在我读取一个文件并计算它有多少行,读取每一行,将它发送到一个操作函数打印出被操纵的字符串。我必须创建一个countLines()函数和一个readLine()函数来执行此操作。只是想知道是否有更高效的东西。

2 个答案:

答案 0 :(得分:3)

这样的事情应该做:

int ch = 0;
while ( ch = fgetc(FILE_POINTER) != EOF ) {
    doSomething (ch);
}

答案 1 :(得分:0)

为什么不使用fread。这是一个例子:

/* fread example: read a complete file */
#include <stdio.h>
#include <stdlib.h>

int main () {
  FILE * pFile;
  long lSize;
  char * buffer;
  size_t result;

  pFile = fopen ( "myfile.bin" , "rb" );
  if (pFile==NULL) {fputs ("File error",stderr); exit (1);}

  // obtain file size:
  fseek (pFile , 0 , SEEK_END);
  lSize = ftell (pFile);
  rewind (pFile);

  // allocate memory to contain the whole file:
  buffer = (char*) malloc (sizeof(char)*lSize);
  if (buffer == NULL) {fputs ("Memory error",stderr); exit (2);}

  // copy the file into the buffer:
  result = fread (buffer,1,lSize,pFile);
  if (result != lSize) {fputs ("Reading error",stderr); exit (3);}

  /* the whole file is now loaded in the memory buffer. */

  // terminate
  fclose (pFile);
  free (buffer);
  return 0;
}

注意:缓冲区保存文件的内容。