我有一个函数void display_a_student()
,它使用两个二进制文件。首先是binary1.dat和index.dat,它包含添加到binary1.dat的每个学生的偏移量。
我正在尝试使用索引来查找用户输入的学生的偏移值,我在使用strcmp()函数将输入的值与index.dat文件中保存的值进行比较时遇到问题
到目前为止,我们非常感谢任何帮助。
void display_a_student()
{
struct student aStudent;
char studentNumSearch[11];
int index=0;
int found = false;
fp = fopen("binary1.dat", "a+b");
fp1 = fopen("index.dat", "a+b");
printf("\n\nWhich student are you searching for?");
scanf("%s", studentNumSearch);
fflush(stdin);
while(!found && index < 10)
{
if(strcmp(studentNumSearch,fp1[index].studentNum)==0)
{
found = true;
}
index++;
}
if (found)
{
fseek(fp, fp1[index].offset, SEEK_SET);
fread(&aStudent,sizeof(struct student),1,fp);
printf("\n\nThe student name is %s\n",aStudent.firstName);
}
else
{
printf("\n\nNo such student\n");
}
fclose( fp ); /* fclose closes file */
fclose (fp1);
getchar();
}
我确定这行:if(strcmp(studentNumSearch,fp1 [index] .studentNum)== 0) 是我出错的地方,因为我不确定如何在使用strcmp()函数时指向该文件。 - 编辑相关代码。
答案 0 :(得分:5)
strcmp
用于字符串比较。使用memcmp
进行二进制比较。
主要问题是您访问fp1[index]
。当您访问从未分配的FILE元素时,这将不起作用。 fp1不是数组,而是FILE指针。
您需要使用fscanf
或fread
来读取文件,fseek
根据每个条目的索引和大小正确定位文件。
答案 1 :(得分:-1)
我不认为你应该使用strcmp,你必须使用fread复制到一个结构中,然后使用你想要的strcmp。 如果你必须使用你的方式..你使用memcmp而不是strcmp,但是Benoit说你需要知道你做cmp之前的长度。