c 从txt中读取数据

Posted hudalikm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c 从txt中读取数据相关的知识,希望对你有一定的参考价值。

txt 数据排列

1 0 0 0
542 1547 388 1393
1282 569 0 0
1226 569 0 0
1171 569 0 0
1115 572 0 0
1060 576 0 0
1006 588 0 0
952 600 0 0
901 617 0 0
851 635 0 0
812 657 0 0
774 679 0 0
740 706 0 0
707 733 0 0
677 764 0 0
647 796 0 0
621 833 0 0

 

C代码:

 1     FILE *handle = NULL;
 2     char buf[MAXELEMENT];
 3     int line_element[4];
 4 
 5     fopen_s(&handle, fileIn, "rb");
 6     if (NULL == handle)
 7     {
 8         printf("cannot open file!\n");
 9         return;
10     }
11 
12     while (fgets(buf, MAXELEMENT, handle) != NULL)
13     {
14         sscanf_s(buf, "%d %d %d %d\n", &line_element[0], &line_element[1], &line_element[2], &line_element[3]);
15         printf("%d %d %d %d\n", line_element[0], line_element[1], line_element[2], line_element[3]);
16     }
17 
18 
19     fclose(handle);
20     handle = NULL;

 

关键是sscanf_s的用法。

 

以上是关于c 从txt中读取数据的主要内容,如果未能解决你的问题,请参考以下文章

求一个Cstring类数组文件读取代码

从C中的txt文件中读取整数

从 .txt 文件 C 读取时重复最后一个字符串

为啥我无法打开/读取从 Python 调用的 C 扩展名中的 txt 文件?

C ++快速排序从txt文件中读取的字符串数组

从给定的 txt 中读取所有数字并将它们输出到 c 中的新文件中