| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 653 人关注过本帖
标题:txt数据的导入~!
只看楼主 加入收藏
jiangpu
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2008-11-11
收藏
 问题点数:0 回复次数:0 
txt数据的导入~!
各位前辈们帮忙啊!程序的输入无法导入并存入STRUCT里;我用的是DEV C++ 来编的,
程序如下:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

   
     struct objeto{
      char nomeDoAutor;
      char assunto;
      char titulo;
      char tipo;
      };
   typedef struct objeto obj;
   
main(){
   
    obj *midia;
    midia = malloc(sizeof(obj));
    char linha[101];
    FILE *biblioteca;
    biblioteca = fopen( "Book3.txt", "r");
    if (biblioteca == NULL)
    {
                   printf ("Nao foi encontrado nenhum arquivo\n");
                   exit (EXIT_FAILURE);
    }
    while(fgets(linha, sizeof(linha), biblioteca))//descobrir o que e fgets
    {    int i,j;
         for (i=0;linha[i]!= '|';i++)
        {
             midia[i].tipo=linha[i];
             printf("%s",midia[i].tipo);  
        }               
     }
    fclose(biblioteca);
   
      fflush(stdin);
      getchar();
      return 0;
}



程序一运行就出问题,又找不出哪里有错,有试过midia[i]->nome= getc(linha[i]),好像错的还要离谱。

PS:数据是在TXT里,用的是:
tipo|titulo|nomeDoAutor|assunto\n
的顺序保存的。
搜索更多相关主题的帖子: 数据 
2008-11-11 05:30
快速回复:txt数据的导入~!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.066105 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved