- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我过去做过类似的事情,所以我不确定为什么当我尝试将我的指针打印到一个指针数组时,我得到一堆 (null) 作为输出。这是我在文件底部附近所说的代码:
int z = 0;
while (z < 9) {
printf("%s ", allLines[z]->username);
z++;
}
我想做的是从用户那里获取一个目录(相对或绝对),然后切换到该目录并打开该目录中的所有文本文件,以便我可以从中提取每一行并存储每一行在记录结构中。请在下面查看我的代码:
#define _GNU_SOURCE
#define MAXLINE 256
#define MAXPATHLENGTH 1024
#define MAXRECORDS 10000
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <pthread.h>
typedef struct records {
char* username;
char* password;
char* bloodType;
char* domainName;
char* index;
} records;
int main(int argc, char** argv) {
if(argc != 2) {
printf("You must provide 2 arguments: <./filename> <directory>\n");
return -1;
}
char* path = malloc(MAXPATHLENGTH * sizeof(char));
char* cwd = malloc(MAXPATHLENGTH * sizeof(char));
FILE* sortedFile;
FILE* dirEntry;
DIR* dirp; //pointer to a directory stream
struct dirent* dirstructp; //pointer to a dirent structure
struct stat buffer;
records** allLines = malloc(MAXRECORDS * sizeof(records));
int linesInFile[MAXRECORDS];
records** files = calloc(MAXRECORDS, sizeof(records)); //pointer to an array of pointers (each of which point to a records struct)
int totalFiles;
if ((sortedFile = fopen("sorted.yay", "w+")) == NULL) {
fprintf(stderr, "%s\n", strerror(errno));
printf("fopen");
exit(errno);
}
//changes the current working directory of the calling process to the directory specified
if((chdir(argv[1])) == -1) {
fprintf(stderr, "%s\n", strerror(errno));
exit(errno);
}
/*copies the pathname of the current working directory to the array pointed to by cwd, which is of length MAXPATHLENGTH*/
if((path = getcwd(cwd, MAXPATHLENGTH)) == NULL) {
fprintf(stderr, "%s\n", strerror(errno));
exit(errno);
}
//returns a pointer to the directory stream if successful
if((dirp = opendir(path)) == NULL) {
fprintf(stderr, "%s\n", strerror(errno));
printf("opendir");
exit(errno);
}
int i = 0;
int j = 0;
int l = 0;
while((dirstructp = readdir(dirp)) != NULL) {
if ((strncmp(dirstructp->d_name, ".", strlen(".")) != 0) && (strncmp(dirstructp->d_name, "..", strlen("..")) != 0)) {
if(lstat(dirstructp->d_name, &buffer) == -1) {
fprintf(stderr, "%s\n", strerror(errno));
printf("Bob Saget");
exit(errno);
}
if(S_ISREG(buffer.st_mode)) {
if ((dirEntry = fopen(dirstructp->d_name, "r")) == NULL) {
fprintf(stderr, "%s\n", strerror(errno));
printf("fopen2");
exit(errno);
}
char* buf = malloc(MAXLINE * sizeof(char));
while(fgets(buf, MAXLINE, dirEntry)) {
records* line = malloc(sizeof(records));
int k = 0;
while(k < 5) {
char* token = malloc(MAXLINE * sizeof(char));
token = strsep(&buf,",");
switch(k) {
case 0:
line->username = malloc(MAXLINE * sizeof(char));
strncpy(line->username, token, strlen(token));
break;
case 1:
line->password = malloc(MAXLINE * sizeof(char));
strncpy(line->password, token, strlen(token));
break;
case 2:
line->bloodType = malloc(MAXLINE * sizeof(char));
strncpy(line->bloodType, token, strlen(token));
break;
case 3:
line->domainName = malloc(MAXLINE * sizeof(char));
strncpy(line->domainName, token, strlen(token));
break;
case 4:
line->index = malloc(MAXLINE * sizeof(char));
strncpy(line->index, token, strlen(token));
break;
}
k++;
}
allLines[l] = line;
l++;
free(line);
free(buf);
buf = malloc(MAXLINE * sizeof(char));
}
linesInFile[j] = i;
i = 0;
files[j] = allLines;
j++;
totalFiles = j;
free(buf);
}
}
}
int z = 0;
while (z < 9) {
printf("%s ", allLines[z]->username);
z++;
}
return 0;
}
最佳答案
records* line = malloc(sizeof(records));
...
line->username = malloc(MAXLINE * sizeof(char));
...
allLines[l] = line;
...
free(line);
...
printf("%s ", allLines[z]->username);
您释放了 allLines[z]
指针,因此它无效并且访问它是未定义的行为。
char* token = malloc(MAXLINE * sizeof(char));<br/>
token = strsep(&buf,",");
只是泄漏内存....token = strsep(&buf,",");
怎么办?返回 NULL?您的代码将在 strncpy(line->index, token, strlen(token));
中执行未定义的行为并且该程序很可能会在 Linux 上收到 sigsegv。char* buf = malloc(MAXLINE * sizeof(char));
while(fgets(buf, MAXLINE, dirEntry)) {
和 free(buf);<br/>
buf = malloc(MAXLINE * sizeof(char));
.具有相同缓冲区的 free + malloc 毫无意义。strncpy(line->password, token, strlen(token));
只是奇怪。首先,它与 strcpy(line->password, token)
相同第二个如果 strlen(token)
等于 MAXLINE 输出将不会以 null 终止,其次如果 strlen(token)
大于 MAXLINE 这将调用未定义的行为。你应该line->username = malloc((strlen(token) + 1) * sizeof(char)); memcpy(line->username, token, strlen(token) + 1);
或者只是 line->username = strdup(token);
.对if (line->username == NULL) { handle errors; }
也很好.或者使用简单的 if (strlen(token) >= MAXLINE) { fprintf(stderr, "token too long!"); abort(); }
来防止 UB .或者你可以 strlcpy(line->username, token, MAXLINE)
这将防止溢出并始终以 null 终止输出。不要使用 strncpy
,这是一个糟糕的功能。allLines
的分配是无效的。 records** allLines = malloc(MAXRECORDS * sizeof(records));
它应该分配一个 sizeof(records*)
的数组指针不是记录。您可以分配一个数组 records* allLines = malloc(MAXRECORDS * sizeof(records));
这可能可以用 allLines[l] = *line;
修复你的代码.但是访问需要使用.
然后->
, 比如 printf
需要用 printf("%s ", allLines[z].username);
更改records** files = calloc(MAXRECORDS, sizeof(records));
这是指向文件指针的指针。MAXPATHLENGTH
相同是PATH_MAX
在 limits.h
中定义char* path = malloc(MAXPATHLENGTH * sizeof(char));
和 path = getcwd(cwd, MAXPATHLENGTH)
泄漏内存(!)而且很奇怪。成功path == cmd
...我建议你只想要cmd = get_current_dir_name()
.关于c - 为什么我不能将指向结构的指针保存为指向指针数组的指针的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53403384/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!