用二进制I/O进行随机访问

作者:追风剑情 发布于:2020-4-7 10:15 分类:C

示例:用二进制I/O进行随机访问

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5.  
  6. #define ARSIZE 1000
  7.  
  8. int main(int argc, char* argv[])
  9. {
  10. double numbers[ARSIZE];
  11. double value;
  12. const char * file = "numbers.dat";
  13. int i;
  14. long pos;
  15. FILE *iofile;
  16.  
  17. //创建一组double类型的值
  18. for (i = 0; i < ARSIZE; i++)
  19. numbers[i] = 100.0 * i + 1.0 / (i + 1);
  20. //尝试打开文件
  21. //注意:对于UNIX和Linux文本模式和二进制模式完全相同
  22. if ((iofile = fopen(file, "wb")) == NULL)
  23. {
  24. fprintf(stderr, "Could not open %s for output.\n", file);
  25. exit(EXIT_FAILURE);
  26. }
  27. //以二进制格式把数组写入文件
  28. fwrite(numbers, sizeof(double), ARSIZE, iofile);
  29. fclose(iofile);
  30. if ((iofile = fopen(file, "rb")) == NULL)
  31. {
  32. fprintf(stderr, "Could not open %s for random access.\n", file);
  33. exit(EXIT_FAILURE);
  34. }
  35. //从文件中读取选定的内容
  36. printf("Enter an index in the range 0-%d.\n", ARSIZE - 1);
  37. while (scanf("%d", &i) == 1 && i >= 0 && i < ARSIZE)
  38. {
  39. pos = (long)i * sizeof(double); //计算偏移量
  40. fseek(iofile, pos, SEEK_SET); //定位到此处
  41. fread(&value, sizeof(double), 1, iofile);
  42. printf("The value there is %f.\n", value);
  43. printf("Next index (out of range to quit):\n");
  44. }
  45. //完成
  46. fclose(iofile);
  47. puts("Bye!");
  48.  
  49. system("pause");
  50. return 0;
  51. }

运行测试

222.png

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号