1

我正在尝试将文件中的名称和密码读入 c 中的结构,但显然我的代码没有按预期工作。有没有人可以帮助我找出下面附加代码的问题?非常感谢!(基本上文件有几个名字和密码,我想把它们读入一个结构accounts[]`)

#include <stdio.h>
#include <stdlib.h>

struct account {
    char *id; 
    char *password;
};

static struct account accounts[10];

void read_file(struct account accounts[])
{
    FILE *fp;
    int i=0;   // count how many lines are in the file
    int c;
    fp=fopen("name_pass.txt", "r");
    while(!feof(fp)) {
        c=fgetc(fp);
        if(c=='\n')
            ++i;
    }
    int j=0;
    // read each line and put into accounts
    while(j!=i-1) {
        fscanf(fp, "%s %s", accounts[j].id, accounts[j].password);
        ++j;
    }
}

int main()
{
    read_file(accounts);
    // check if it works or not
    printf("%s, %s, %s, %s\n",
        accounts[0].id, accounts[0].password,
        accounts[1].id, accounts[1].password);
    return 0;
}

name_pass.txt 文件是一个像这样的简单文件(名称+密码):

你好 1234

大声笑 123

世界123

4

3 回答 3

5

您正在读取文件两次。所以你需要在第二个循环开始之前fseek() 或 rewind()到第一个字符。

尝试:

fseek(fp, 0, SEEK_SET); // same as rewind()   

或者

rewind(fp);             // s   

您需要在两个循环之间添加此代码(在第一个循环之后和第二个循环之前)

此外,您要为id, password filedin分配内存account struct

struct account {
    char *id; 
    char *password;
};

或者像@Adrián López 在他的回答中建议的那样静态分配内存。

编辑 我更正了你的代码:

struct account {
    char id[20]; 
    char password[20];
};
static struct account accounts[10];
void read_file(struct account accounts[])
{
    FILE *fp;
    int i=0;   // count how many lines are in the file
    int c;
    fp=fopen("name_pass.txt", "r");
    while(!feof(fp)) {
        c=fgetc(fp);
        if(c=='\n')
            ++i;
    }
    int j=0;
    rewind(fp);  // Line I added
        // read each line and put into accounts
    while(j!=i-1) {
        fscanf(fp, "%s %s", accounts[j].id, accounts[j].password);
        ++j;
    }
}
int main()
{
    read_file(accounts);
    // check if it works or not
    printf("%s, %s, %s, %s\n",
        accounts[0].id, accounts[0].password,
        accounts[1].id, accounts[1].password);
    return 0;
}   

及其工作方式如下:

:~$ cat name_pass.txt 
hello 1234

lol 123

world 123
:~$ ./a.out 
hello, 1234, lol, 123
于 2013-02-11T15:40:51.317 回答
1

您需要malloc()结构中指针的内容或使用静态大小声明:

struct account {
    char id[20]; 
    char password[20];
};
于 2013-02-11T15:41:00.017 回答
0

您可能应该首先为您正在输入的内容分配内存scanf。关键字是malloc,有点太长了,不能在这里讲课。

于 2013-02-11T15:40:58.597 回答