java 无法读取文件_fread无法读取文件

详细的错误检查和日志记录是免费调试的 . 除此之外,包括额外的日志记录主要有帮助 .

在您显示的代码的可能版本下方,反映了我上面的陈述:

int readConfigIn2Struct (

char file_name[],

outermost_struct * settings_mem_location)

{

#ifdef DEBUG

fprintf(stderr, "%s:%d - Entering %s with file_name = '%s', outermost_struct * = %p\n",

__FILE__, __LINE__, __func__, file_name, (void*) settings_mem_location);

#endif

assert(NULL != file_name);

assert(NULL != settings_mem_location);

int result = 0; /* be optimistic. */

FILE *ptr_file = fopen(file_name, "rb");

if (ptr_file == NULL)

{

result = -1;

}

else

{

size_t bytes_to_read = sizeof * settings_mem_location;

#ifdef DEBUG

fprintf(stderr, "Bytes to read from '%s': %zu\", file_name, bytes_to_read);

#endif

size_t bytes_read = fread(settings_mem_location, 1, bytes_to_read, ptr_file);

if (bytes_read < bytes_to_read)

{

result = -1;

if (feof(ptr_file))

{

fprintf(stderr, "Unexpectedly reached EOF after %zu bytes\", bytes_read);

}

else if (ferror(ptr_file))

{

fprintf(stderr, "An error occurred after reading %zu bytes\", bytes_read);

}

}

fclose(ptr_file);

}

#ifdef DEBUG

fprintf(stderr, "%s:%d - Leaving %s with result = %d\n", __FILE__,

__LINE__, __func__, result);

#endif

return result; /* One exit point per function is preferred over several. */

}

使用选项 -DDEBUG 进行编译以启用其他日志记录,例如进入和退出 .

要删除对 assert() 的调用,请使用选项 -DNDEBUG 自动编译 .

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值