如何从文件中读取变量

时间:2012-06-22 17:38:15

标签: c file variables file-io

我正在处理的程序创建了一个包含高分部分的文件(about.txt)。

.txt第12行是......

纯文本(没有高分):

- with <0>

C:

fprintf(about,"-%s with <%ld>",highname,highscore);

我需要从文件中读取分数并在编写新分数之前测试它是否大于当前的高分。

我需要......

if(score > highscore)
  highscore=score;

唯一的问题是如何从文件中获得高分。

我自己做了一些研究,我确信这比我做的要容易得多但是当我环顾四周时,我无法找到任何方法来做这件事。

谢谢。 /////////////////////////////////编辑//////////////// //////// 创建文件:

 FILE *about;
    fpos_t position_name;
    fpos_t position_score;
    ...
    fprintf(about,"\n\nHIGHSCORE:\n\n");
    fprintf(about,"-");
    fgetpos(about,&position_name);
    fprintf(about,"%s",highname);
    fprintf(about,"with");
    fgetpos(about,&position_score);
    fprintf(about,"%ld",highscore);
    fclose(about);
    ...

获得分数:

      FILE *about;
      about = fopen("about.txt","r");

      fseek(about,position_name,SEEK_SET);
      fscanf(about,"%s",highname);
      fseek(about,position_score,SEEK_SET);
      fscanf(about,"%ld",highscore);
      fclose(about);

更改变量(注意.. highscore / highname是全局变量)

if(score >= highscore) //alter highscore
    {
      highscore = score;
      highname = name;
      puts("NEW HIGHSCORE!!!\n");
    }

我收到错误:

error: incompatible types when assigning to type 'char[3]' from type 'char'

在这一行:

highname = name;

此处声明的名称/分数/高名/高分(在头文件中):

char name[3];
char highname[3];
long score;
long highscore;

2 个答案:

答案 0 :(得分:0)

你需要使用fscanf来做到这一点;它有点像fprintf的逆。

看一下这里的文档: http://cplusplus.com/reference/clibrary/cstdio/fscanf/

答案 1 :(得分:0)

您可以使用fscanf鲜为人知但非常强大的正则表达式功能,以及基于正则表达式跳过条目的功能:

打开文件,跳过循环中的前11行。然后阅读得分,如下:

FILE *f = fopen("about.txt","r");
int i, score;
char buf[1024];
for (i = 0 ; i != 11 ; i++) {
    fgets(buf, 1024, f);
}
fscanf(f, "%*[^<]%*[<]%d", &score);
printf("%d\n", score);

这将跳过文件中的所有内容,直到开始<括号,然后跳过括号本身,并读取整数条目。请注意,格式字符串中的%*指定fscanf要跳过的条目。 Here is a snippet at ideone

编辑 - 为了回应编辑中的其他问题:您无法分配这样的数组,您应该使用memcpy代替:

memcpy(highname, name, 3);