怎样用C语言从txt文件中读入数据?

Posted

tags:

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

我C盘根目录下有一个stud_record的txt文件,现在程序中要把这个文件中的数据逐个读入到已定义的数组中,请问应该怎么做?我直接用fread读入并让结果输出到屏幕,但运行的时候没有反应,为什么?
谢谢!
#include <stdio.h>
struct student

char stu_num[5];
char name[10];
int age;
int score;
stu[9];
print_rec(char a[],char b[],int c,float d);
main()

i=0;
FILE *fp;
if((fp=fopen("C:\\stud_r~1.txt","r"))==NULL)
printf("Cannot open the file\n");exit(0);
for(i=0;i<9;i++)
fread(&stu[i],sizeof(struct student),1,fp);
print_rec(stu[i].stu_num,stu[i].name,stu[i].age,stu[i].score);
getch();


print_rec(char a[],char b[],int c,float d)

int j;
for(j=0;j<9;j++)
printf("%7s%10s%4d%6f\n",a[j],b[j],c,d);

这是我要弄得程序的一部分,所以那个输出的函数要作为子函数调用,大家能帮忙看看哪儿有问题吗?
谢谢!

1 以fopen打开文件,使用"r"方式。

2 通过fscanf,按照文件中的数据格式,读入数据。

3 关闭文件并使用数据。

如文件in.txt中存在三个以空格分隔的数据,依次为整型,字符串,以及浮点型,则读取数据的代码可以写作:

int main()

    FILE *fp;
    int a;
    char s[100];
    float f;
    fp = fopen("in.txt", "r");
    if(fp == NULL) return -1;//打开文件失败,结束程序。
    fscanf(fp,"%d%s%f",&a,s,&f);
    fclose(fp);
    
    printf("read value: %d, %s, %f", a,s,f);
参考技术A //其中的in.txt就是你要读取数据的文件,当然把它和程序放在同一目录
-------------------------------------
#include
<stdio.h>
int
main()

int
data;
FILE
*fp=fopen("in.txt","r");
if(!fp)

printf("can't
open
file\n");
return
-1;

while(!feof(fp))

fscanf(fp,"%d",&data);
printf("%4d",data);

printf("\n");
fclose(fp);
return
0;
参考技术B #include
<stdio.h>
int
main()

FILE
*fp=NULL;
int
a[160];
int
i=0;
fp=fopen("data.txt","r");
if
(
!fp
)

printf("open
file
error\n");
return
-1;

while(
!feof(fp)
)

if
(
fscanf(
fp
,
"%d"
,&a[i]
)
!=1
)
break
;
i++;
fgetc(fp)
;//过滤掉分隔符

fclose(fp);
//以下倒序输出数据
printf("i=%d\n"
,
i
);
while(
--i
>=
0
)

printf("%d,"
,
a[i]
);
if
(
i
%10
==
0
)
printf("\n")
;

return
0;
参考技术C 你这是ascii格式的文件,最适合用fscanf来读,例如:
fscanf(fp,
"%s
%s
%d
%f",stu[i].stu_num,stu[i].name,&stu[i].age,&stu[i].score);
fread适用于读定长记录,你这样用当然要出错。
唉,我这只是举例说明,看来你对c还要深入了解。凡是你希望将变量作为参数传递给某函数,并希望在该函数内部改变变量的值,你都需要传递变量的地址,即使用&符号。你在自己的fread里面不是也使用了&stu[i]吗?但是由于字符数组自身已经是地址,所以stu[i].stu_num之类的东西就不要再加&了,否则反而出错。
我并没有你的数据文件,仅从你的帖子上看,你在fscanf的格式字符串最后再加一个回车字符,应该能跳过行尾。建议你再试试
fscanf(fp,
"%s
%s
%d
%f\n",stu[i].stu_num,stu[i].name,&stu[i].age,&stu[i].score);
参考技术D 这要看你的代码是什么样的。
贴出我的验证代码你看看有什么不同。

有一点要注意如果你用的是TC之类的编译器,它是DOS下工作的不支持8个字符以上的长文件名,所以要用短名如:stud_r~1.txt
#include "stdio.h"
void main()


FILE *pf;
char str[100];
int i;
for(i=0;i<100;i++) str[i]=0;
pf=fopen("C:\\record.txt","r");
fread(str,100,100,pf);
fclose(pf);
printf("\n%s",str);


看了你的代码,有几处不妥修正如下:
#include <stdio.h>
struct student

char stu_num[5];
char name[10];
int age;
int score;
stu[9];
print_rec(struct student *stud); /*你的访问方法行不通,要这样*/
main()

i=0;
FILE *fp;
fp=fopen("C:\\stud_r~1.txt","r");/*这里一定不能放在if里面,这个赋值返回是恒为真的。*/

if(fp==NULL)
printf("Cannot open the file\n");exit(0);
for(i=0;i<9;i++)
fread(&stu[i],sizeof(struct student),sizeof(struct student),fp);/*第三个参数是读取的字节数所以不能是1*/
print_rec(stu);
fclose(fp);/*事情做完记得收拾工具*/
getch();


print_rec(struct student *stud)

int j;
for(j=0;j<9;j++)
printf("%7s%10s%4d%6f\n",stud[j].stu_num,stud[j].name,stud[j].age,stud[j].score);
本回答被提问者采纳

怎样用C语言实现FFT算法啊?

要求从一个txt文档中读入数据,把读入的数据生成一个波形图。然后把读入的数据进行FFT运算,把生成的数据存到另一个TXT文档中,将生成的数据同样生成一个波形图。急求,谢谢啊!!

1、二维FFT相当于对行和列分别进行一维FFT运算。具体的实现办法如下:
先对各行逐一进行一维FFT,然后再对变换后的新矩阵的各列逐一进行一维FFT。相应的伪代码如下所示:
for (int i=0; i<M; i++)
FFT_1D(ROW[i],N);
for (int j=0; j<N; j++)
FFT_1D(COL[j],M);
其中,ROW[i]表示矩阵的第i行。注意这只是一个简单的记法,并不能完全照抄。还需要通过一些语句来生成各行的数据。同理,COL[i]是对矩阵的第i列的一种简单表示方法。
所以,关键是一维FFT算法的实现。

2、例程:

#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#define N 1000
/*定义复数类型*/
typedef struct
double real;
double img;
complex;
complex x[N], *W; /*输入序列,变换核*/
int size_x=0;      /*输入序列的大小,在本程序中仅限2的次幂*/
double PI;         /*圆周率*/
void fft();     /*快速傅里叶变换*/
void initW();   /*初始化变换核*/
void change(); /*变址*/
void add(complex ,complex ,complex *); /*复数加法*/
void mul(complex ,complex ,complex *); /*复数乘法*/
void sub(complex ,complex ,complex *); /*复数减法*/
void output();
int main()
int i;                             /*输出结果*/
system("cls");
PI=atan(1)*4;
printf("Please input the size of x:\\n");
scanf("%d",&size_x);
printf("Please input the data in x[N]:\\n");
for(i=0;i<size_x;i++)
   scanf("%lf%lf",&x[i].real,&x[i].img);
initW();
fft();
output();
return 0;

/*快速傅里叶变换*/
void fft()
int i=0,j=0,k=0,l=0;
complex up,down,product;
change();
for(i=0;i< log(size_x)/log(2) ;i++)   /*一级蝶形运算*/
   l=1<<i;
   for(j=0;j<size_x;j+= 2*l )             /*一组蝶形运算*/
    for(k=0;k<l;k++)        /*一个蝶形运算*/
      mul(x[j+k+l],W[size_x*k/2/l],&product);
      add(x[j+k],product,&up);
      sub(x[j+k],product,&down);
      x[j+k]=up;
      x[j+k+l]=down;
    
   


/*初始化变换核*/
void initW()
int i;
W=(complex *)malloc(sizeof(complex) * size_x);
for(i=0;i<size_x;i++)
   W[i].real=cos(2*PI/size_x*i);
   W[i].img=-1*sin(2*PI/size_x*i);


/*变址计算,将x(n)码位倒置*/
void change()
complex temp;
unsigned short i=0,j=0,k=0;
double t;
for(i=0;i<size_x;i++)
   k=i;j=0;
   t=(log(size_x)/log(2));
   while( (t--)>0 )
    j=j<<1;
    j|=(k & 1);
    k=k>>1;
   
   if(j>i)
    temp=x[i];
    x[i]=x[j];
    x[j]=temp;
   


/*输出傅里叶变换的结果*/
void output()
int i;
printf("The result are as follows\\n");
for(i=0;i<size_x;i++)
   printf("%.4f",x[i].real);
   if(x[i].img>=0.0001)printf("+%.4fj\\n",x[i].img);
   else if(fabs(x[i].img)<0.0001)printf("\\n");
   else printf("%.4fj\\n",x[i].img);


void add(complex a,complex b,complex *c)
c->real=a.real+b.real;
c->img=a.img+b.img;

void mul(complex a,complex b,complex *c)
c->real=a.real*b.real - a.img*b.img;
c->img=a.real*b.img + a.img*b.real;

void sub(complex a,complex b,complex *c)
c->real=a.real-b.real;
c->img=a.img-b.img;

参考技术A float ar[1024],ai[1024];/* 原始数据实部,虚部 */
float a[2050];

void fft(int nn) /* nn数据长度 */

int n1,n2,i,j,k,l,m,s,l1;
float t1,t2,x,y;
float w1,w2,u1,u2,z;
float fsin[10]=0.000000,1.000000,0.707107,0.3826834,0.1950903,0.09801713,0.04906767,0.02454123,0.01227154,0.00613588,;
float fcos[10]=-1.000000,0.000000,0.7071068,0.9238796,0.9807853,0.99518472,0.99879545,0.9996988,0.9999247,0.9999812,;

switch(nn)

case 1024: s=10; break;
case 512: s=9; break;
case 256: s=8; break;


n1=nn/2; n2=nn-1;
j=1;
for(i=1;i<=nn;i++)

a[2*i]=ar[i-1];
a[2*i+1]=ai[i-1];

for(l=1;l<n2;l++)

if(l<j)

t1=a[2*j];
t2=a[2*j+1];
a[2*j]=a[2*l];
a[2*j+1]=a[2*l+1];
a[2*l]=t1;
a[2*l+1]=t2;

k=n1;
while (k<j)

j=j-k;
k=k/2;

j=j+k;

for(i=1;i<=s;i++)

u1=1;
u2=0;
m=(1<<i);
k=m>>1;
w1=fcos[i-1];
w2=-fsin[i-1];
for(j=1;j<=k;j++)

for(l=j;l<nn;l=l+m)

l1=l+k;
t1=a[2*l1]*u1-a[2*l1+1]*u2;
t2=a[2*l1]*u2+a[2*l1+1]*u1;
a[2*l1]=a[2*l]-t1;
a[2*l1+1]=a[2*l+1]-t2;
a[2*l]=a[2*l]+t1;
a[2*l+1]=a[2*l+1]+t2;

z=u1*w1-u2*w2;
u2=u1*w2+u2*w1;
u1=z;


for(i=1;i<=nn/2;i++)

ar[i]=4*a[2*i+2]/nn; /* 实部 */
ai[i]=-4*a[2*i+3]/nn; /* 虚部 */
a[i]=4*sqrt(ar[i]*ar[i]+ai[i]*ai[i]); /* 幅值 */



(http://zhidao.baidu.com/question/284943905.html?an=0&si=2)追问

我冒昧的问一句啊,哪条语句是生成波形图的?还有哪条语句是从文档中读数据的?

本回答被提问者采纳
参考技术B ......

以上是关于怎样用C语言从txt文件中读入数据?的主要内容,如果未能解决你的问题,请参考以下文章

怎样用C语言实现FFT算法啊?

求助大神,R语言怎样读取txt文件中第三列1000-2000行的数据

怎样用C语言将文件复制另外的文件夹

matlab怎样按列读取txt中的数据到数组啊

C语言中如何从TXT文件中读出数据并存放到线性链表中

Java读入文件解析输出Map