这是我的代码:
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
struct student
{
char studentName[50];
int id;
};
struct student_detail
{
int day, month, year, grade;
struct student information;
}stu_data;
//---------------------------------//
int main()
{
struct student_detail stu_data[10];
int student_no, i=0, choice=0;
char keyword[50];
FILE *fptr;
printf("Add-Information(1) || Get-Information(2): ");
scanf("%d",&choice);
if(choice == 1){
fptr = (fopen("userInfo.txt","ab"));
system("CLS");
printf("How many students would you like to add?[MAX 10]: ");
scanf("%d",&student_no);
system("CLS");
for(i=0; i < student_no; i++){
system("CLS");
printf("Enter student#%d's name: ",i+1);
scanf("%s", stu_data[i].information.studentName);
printf("\nWhat is %s's studentID?: ",stu_data[i].information.studentName);
scanf("%d",&stu_data[i].information.id);
printf("\nWhat is %s's date of birth?(dd/mm/yy):\n",stu_data[i].information.studentName);
scanf("%d %d %d",&stu_data[i].day, &stu_data[i].month, &stu_data[i].year);
fwrite(&stu_data[i].information.studentName, sizeof(struct student), 1, fptr);
fwrite(&stu_data[i].information.id, sizeof(struct student), 1, fptr);
fwrite(&stu_data[i].day, sizeof(struct student), 1, fptr);
fwrite(&stu_data[i].month, sizeof(struct student), 1, fptr);
fwrite(&stu_data[i].year, sizeof(struct student), 1, fptr);
}
fclose(fptr);
}
if(choice == 2){
fptr = (fopen("userInfo.txt","rb+"));
system("CLS");
printf("What students information would you like to retreive?: ");
scanf("%s",keyword);
fseek(fptr, sizeof(struct student), SEEK_SET);
fread(&stu_data[i].information.studentName, sizeof(struct student), 1, fptr);
fread(&stu_data[i].information.id, sizeof(struct student), 1, fptr);
fread(&stu_data[i].day, sizeof(struct student), 1, fptr);
fread(&stu_data[i].month, sizeof(struct student), 1, fptr);
fread(&stu_data[i].year, sizeof(struct student), 1, fptr);
printf("Name: %s",stu_data[i].information.studentName);
printf("\nID: %d",stu_data[i].information.id);
printf("\nDate of birth: %d/%d/%d\n\n",stu_data[i].day, stu_data[i].month, stu_data[i].year);
system("PAUSE");
fclose(fptr);
return 0;
}
}
文件输入如下:
名称:Riley
ID:1
生日:2001年1月10日
当我从文件中读取信息时,我会得到正确的信息,但不是全部,当在消息中读取时,它看起来像这样:
名称:y
ID:1
生日:10/2001/2686248
写作只是不读(抱歉,程序内部缺少注释)。
答案 0 :(得分:0)
我怀疑您是在写书还是在读您的书。
写作时,
fwrite(&stu_data[i].information.studentName, sizeof(struct student), 1, fptr);
您正在写sizeof(struct student)
字节的1个元素,不是从学生结构的开头开始,而是从stu_data[i].information.studentName
开始。这样就得到了50字节的名称,以及在内存中跟随它的所有内容。如果sizeof(struct student)
为250字节,则最好写入200字节的废话,然后继续下一个字段。啊!
除非您有充分的理由不这样做,为什么不立即写入整个记录?更少的代码,更少的计算机麻烦。
fwrite(&stu_data[i], sizeof(struct student), 1, fptr);
通常,这就是您应该在代码中寻找的内容:作为第一个参数提供的地址应为数据结构,其大小在第二个中指定。更好:
fwrite(&stu_data[i], sizeof(stu_data[i]), 1, fptr);
同样的建议也适用于阅读。我只会指出另一个错误:
fseek(fptr, sizeof(struct student), SEEK_SET);
无论提供什么输入,您都将寻求(可能打算作为)第二条记录:从文件开头起sizeof(struct student)
个字节。根据输入,您可能想要该数字的倍数。
此外, hexdump (1)是您的朋友,尤其是-C选项。