0

我目前在 Windows XP 中使用 MinGW。

我编写了一个程序,该程序接受用户的输入并将它们放入 .txt 文件中

typedef struct data_base{
    char name[254];
    int age;
    int postalcode;
    struct data_base *next;
}person;

我想知道是否有办法编辑 .txt 文件的数据。

例如,在 .txt 文件中,我有 3 组基于用户输入的数据:

Steven    //name
19        //age
1100      //postal code
Jack 
24
2203
Mary
21
0109

我会询问用户他希望编辑哪组数据。然后在获取编辑后的数据后,我希望在用户选择的特定集的 .txt 文件中覆盖该数据。


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

typedef struct data_base{
    char name[254];
    int age;
    int postalcode;
    struct data_base *next;
}person;

void read()
{
person *curr[20];
int count = 0;
FILE *f;
int editchoice = 0;

f = fopen("personfile.txt","r+");
// Read the data in the file based on user's input

//Display the names: 1. Steven 2.Jack  3.Mary
printf("Editing Whose Data?: \n");
scanf("%d",&editchoice);    

printf("New name: \n");
scanf("%s",&curr[editchoice]->name);
fprintf(f,"%s\n",curr[editchoice]->name);

printf("New age: \n");
scanf("%d",&curr[editchoice]->age);
fprintf(f,"%d\n",curr[editchoice]->age);

printf("New name: \n");
scanf("%d",&curr[editchoice]->postalcode);
fprintf(f,"%d\n",curr[editchoice]->postalcode);

}

我预计数据会被覆盖,但它没有发生。(对不起,我是初学者。)

4

2 回答 2

0

是的,你快到了。

对我来说,你有两个选择。或者您在内存中(在列表中)更改该文件,然后将列表转储到文件中。或者您更改文件并将文件重新读入内存(到该列表)。

或者

您可以通过将文件光标定位在要更改的数据的开头并更改它来更改文件中的数据,但是您还应该更新内存中的数据。

我解决这个问题的方法是:

编写一个函数,在文件中给一个“id”位置的人块,这样你就可以读取和写入人的数据到文件中。

于 2013-10-15T13:51:52.693 回答
0

您可以从文件中读取,然后将结果写入另一个文件。

逐条阅读,

如果记录有你想改变的人然后改变

然后

当您将记录读入 tmp 文件时转储​​记录,这将包括发生时更改的记录。

然后关闭这两个文件,删除旧文件,重命名tmp 文件。

于 2013-10-15T14:11:03.010 回答