在二进制文件中搜索记录

时间:2012-06-10 01:28:02

标签: c binaryfiles

我试图通过搜索名称来查找二进制文件中是否存在记录 似乎自从“if”返回后我没有做正确的事情,无论输入什么时候总是找不到它。
调试器声明“if =表达式中的语法错误”,我没有看到它。

#ifndef DATA_PLAYER_H_INCLUDED
#define DATA_PLAYER_H_INCLUDED
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct Player
{
    char nome[50];
    int pontos;
}Players;

void ViewPont();
void SearchPont();
#endif // DATA_PLAYER_H_INCLUDED

-

#include "DATA_PLAYER.h"

void ViewPont()
{
    Players pl;
    FILE *fp;
    int i, pontos;

    fp = fopen("Pontuacoes.dat", "rb+");

        while((fread(&pl, sizeof(Players),1, fp)) != 0 )
    {
        printf("%s %d\n", pl.nome, pl.pontos);
    }

    fclose(fp);
}

void SearchPont()
{
    char nam[50];
    char ch;
    Players pl;
    FILE * fp;

    fp = fopen("Pontuacoes.dat","rb+");

    printf("\n nome das pont\n");
    fflush(stdout);
    scanf("%s", nam);

    printf("%s", nam);

    while((fread(&pl, sizeof(Players),1, fp)) != 0)
    {
        if((strcmp(pl.nome, nam))==0);
        {
            printf("\nregisto encontrado\n");
        }

    }
fclose(fp);

}

1 个答案:

答案 0 :(得分:1)

愚蠢的我..........

if(strcmp(pl.nome, nam) ==0);

- &GT; ;那个小细节....

if(strcmp(pl.nome, nam) ==0)