无法使用fscanf读取文件

时间:2016-04-06 13:16:39

标签: c file

我编写了以下代码,没有任何编译错误或警告。但我的程序每次都崩溃了吗?为什么以及如何解决这个问题?

代码

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main ()
{
  FILE *fp;

  int vertexIndex=0;
  float vertexTable[][2000]={0};
  int faceIndex = 0;
  int faceTable[][2000]={0};
  char lineHeader[128]={0};

  fp = fopen("C://Users//matt//Desktop//mannekeCoord.txt","r");

  if(fp == NULL) 
  {
     perror("Error in opening file");
     return(-1);
  }

  do
  {
    int res = fscanf(fp, "%s", lineHeader);
    if(res ==EOF)
      {break;}

    //vertex
    if ( strcmp( lineHeader, "v" ) == 0 ){
      fscanf(fp, "%f %f %f\n", &vertexTable[vertexIndex][0], &vertexTable[vertexIndex][1], &vertexTable[vertexIndex][2]);
      vertexIndex++;
    }

    //face 
    if ( strcmp( lineHeader, "f" ) == 0 ){
      fscanf(fp, "%d//%d %d//%d %d//%d %d//%d\n", &faceTable[faceIndex][0], &faceTable[faceIndex][1], &faceTable[faceIndex][2], &faceTable[faceIndex][3], &faceTable[faceIndex][4],  &faceTable[faceIndex][5], &faceTable[faceIndex][6],  &faceTable[faceIndex][7] );
      faceIndex++;
    }

  } while(1);

  fclose(fp);
  return 0;
}

这是它必须阅读的文件内容的简短版本:

  v -0.999718 -1.004708 0.999546

  v -0.932863 -2.122097 -1.108066

  v -1.000000 1.000000 1.000000

  v -0.980325 0.671164 -1.031669

  v 0.094571 -2.805363 -1.376969

  v -0.437903 -2.617016 -1.306834

  f 728//48 782//48 785//48 751//48

  f 758//48 788//48 789//48 759//48

  f 727//48 783//48 782//48 728//48

  f 793//402 797//402 796//402 792//402

  f 790//48 794//48 797//48 793//48

  f 791//403 795//403 794//403 790//403

  f 783//404 791//404 790//404 782//404

  f 784//405 792//405 796//405 788//405

  f 789//48 797//48 794//48 786//48

  f 786//406 794//406 795//406 787//406

我使用这个网站编译:http://www.onlinecompiler.net/

2 个答案:

答案 0 :(得分:2)

vertexTablefaceTable的大小均为2000,所以你要写入未分配的内存,这会导致&#34;未定义的行为&#34;

答案 1 :(得分:1)

这些声明是错误的:

float vertexTable[][2000]={0};
int faceTable[][2000]={0};

相反,你需要这个:

float vertexTable[2000][3]={0};
int faceTable[2000][8]={0};

我希望您知道,如果顶点数或面数超过2000,您仍然会遇到问题。