我正在使用C中的fread()
。我正在尝试阅读二进制文件名 pds_demo.bin 的内容,但某种程度上我的fread
函数没有进展。我在gdb中检查了fread()
的返回值,它返回0。
我正在使用 pds_functions.c , pds_test.c 和 pds_demo.bin 共有3个文件(包含数据到阅读)。
pds_test.c 正在 pds_functions.c 中调用名为pds_search_by_key()
的函数来检查特定内容。此函数检查演示文件的内容并返回记录是否存在的状态。我已经包含了以下所有文件。
任何形式的帮助将不胜感激。感谢。
pds_test.c :
void test_search() {
int status;
struct Contact c3;
int key;
key = 101;
status = pds_search_by_key(key, &c3);
if (status != PDS_SUCCESS) {
fprintf(stderr, "pds_search_by_key failed for key %d: errorcode %d\n", key, status);
} else {
printContact(&c3);
}
key = 102;
status = pds_search_by_key(key, &c3);
if (status != PDS_SUCCESS) {
fprintf(stderr, "pds_search_by_key failed for key %d: errorcode %d\n", key, status);
} else {
printContact(&c3);
}
key = 1020000;
status = pds_search_by_key(key, &c3);
if (status != PDS_SUCCESS) {
fprintf(stderr, "pds_search_by_key failed for key %d: errorcode %d\n", key, status);
} else {
printContact(&c3);
}
}
pds_functions.c :
int pds_search_by_key(int key, struct Contact *c) {
fseek(repo_fptr, 0L, 0);
if (pdsInfo.repo_status == 1) {
while (!feof(repo_fptr)) {
fread(c, sizeof(struct Contact), 1, repo_fptr);
if (c->contact_id == key) {
return PDS_SUCCESS;
}
}
return PDS_REC_NOT_FOUND;
}
return PDS_REPO_NOTOPEN;
}
pds_demo.bin :
101 Contact #1 Phone #1 Email #1 102 Contact #2 Phone #2 Email #2 102 Contact #2 Phone #2 Email #2
还有一个结构定义了结构Contact。
struct Contact {
int contact_id;
char cname[MAX_NAME_LEN];
char mphone[MAX_PHONE_LEN];
char email[MAX_EMAIL_LEN];
};
当我使用gdb调试程序时,* c的内容如下:
(gdb) p *c
$1 = {contact_id = 540094513, cname = "Contact #1 Phone #1 Email #1 102
Contact #2 Phone ", mphone = "#2 Email #2",
email = " 102 Contact #2 Phone #2 Email #2 \377\377\177\000\000\t\t@\000\000\000\000\000\000\000"}
答案 0 :(得分:1)
您的代码存在重大问题:
您的阅读循环不正确,为什么在这里:Why is “while ( !feof (file) )” always wrong?
您正在从文件中读取固定长度的结构,您必须以二进制模式读取和写入文件,max((list(g) for k,g in groupby(data,key=lambda x:x&1) if k),key=len)
必须分别通过fopen
或"rb"
才能打开文件以二进制模式。
如果文件以二进制模式打开,则可以通过以下方式修改读取循环:
"wb"