C语言 修改文件中的数据
#include<stdio.h>structstu{intxuehao;charxingming[10];intchengji;}stu1={101,"liyun",6...
#include<stdio.h>
struct stu{
int xuehao;
char xingming[10];
int chengji;
}stu1={101,"liyun",65};
void main(){
FILE *fp;
fp=fopen("d:\\stu.dat","w");
if(fp==NULL){
printf("文件创建失败!\n");
}
fwrite(&stu1,sizeof(struct stu),1,fp);
fclose(fp);
}
这是我写的一段代码
现在需要吧成绩修改为80
我知道需要把文件中的数据提取出来修改 然后重新放回文件里
可是我不知道怎么写这段代码
帮帮忙啦
十分感谢 展开
struct stu{
int xuehao;
char xingming[10];
int chengji;
}stu1={101,"liyun",65};
void main(){
FILE *fp;
fp=fopen("d:\\stu.dat","w");
if(fp==NULL){
printf("文件创建失败!\n");
}
fwrite(&stu1,sizeof(struct stu),1,fp);
fclose(fp);
}
这是我写的一段代码
现在需要吧成绩修改为80
我知道需要把文件中的数据提取出来修改 然后重新放回文件里
可是我不知道怎么写这段代码
帮帮忙啦
十分感谢 展开
3个回答
展开全部
有三种方法可以实现,分别如下:
第1种、将文件中数据读入内存中,修改后,清空源文件,存入新数据。
第2种、以读写的方式打开文件,将文件指针移动到要修改的地方,写入新数据。新数据将会覆盖掉旧数据。
第3种、以读写的方式打开文件,将文件指针定位到需要修改数据的末尾,然后删除需要修改的数据(通过循环n次执行fputc(8,fp),直到清空需要修改的数据为止,8为退格键对应的ascii)。 然后计算需要加入的新数据长度,通过fputc(32,fp)来添加空格到文件中(32为空格键的ascii). 然后根据指针位置,填入数据覆盖掉这些空格。
注意:第1种方法适合数据量较小的情况,第2种、第3种适合数据量较大的情况。
提供一个参考代码,如下:
#include "stdio.h"
main()
{
FILE *in=fopen("f:\\test.txt","r");
FILE *out=fopen("f:\\back.txt","w"); /*out是充当临时文件作用*/
int ch=0;
if(!in)
{
printf("cann't open test.txt\n");
exit(1);
}
if(!out)
{
printf("cann't create back.txt\n");
exit(1);
}
/*开始复制*/
while(!feof(in))
{
ch=fgetc(in);
if(ch=='a') ch='p';
fputc(ch,out);
}
fclose(in); fclose(out);
unlink("f:\\test.txt"); /*删除test.txt*/
rename("f:\\back.txt","test.txt"); /*改名*/
printf("ok!!!!!!\n");
}
展开全部
#include<stdio.h>
struct stu{
int xuehao;
char xingming[10];
int chengji;
}stu1={101,"liyun",65};
void main(){
FILE *fp;
fp=fopen("d:\\stu.dat","w");
if(fp==NULL){
printf("文件创建失败!\n");
}
fwrite(&stu1,sizeof(struct stu),1,fp);
fclose(fp);
fp=fopen("d:\\stu.dat","r");
if(fp==NULL){
printf("文件读失败!\n");
}
struct stu tmp;
fread(&tmp,sizeof(struct stu),1,fp);
fclose(fp);
tmp.chengji=80;
fp=fopen("d:\\stu.dat","w");
if(fp==NULL){
printf("文件写失败!\n");
}
fwrite(&tmp,sizeof(struct stu),1,fp);
fclose(fp);
}
struct stu{
int xuehao;
char xingming[10];
int chengji;
}stu1={101,"liyun",65};
void main(){
FILE *fp;
fp=fopen("d:\\stu.dat","w");
if(fp==NULL){
printf("文件创建失败!\n");
}
fwrite(&stu1,sizeof(struct stu),1,fp);
fclose(fp);
fp=fopen("d:\\stu.dat","r");
if(fp==NULL){
printf("文件读失败!\n");
}
struct stu tmp;
fread(&tmp,sizeof(struct stu),1,fp);
fclose(fp);
tmp.chengji=80;
fp=fopen("d:\\stu.dat","w");
if(fp==NULL){
printf("文件写失败!\n");
}
fwrite(&tmp,sizeof(struct stu),1,fp);
fclose(fp);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询