从文件读取后动态存储数据

时间:2015-01-28 11:40:35

标签: c json csv

我正在尝试从逗号分隔的文件中读取字符串,并希望在输出期间显示并将结果保存为特定格式(看起来像JSON格式)。

我设法从文件中读取和显示数据,但无法以下面的示例中的格式动态显示它。相反,它只是在结束前将整个字符串显示在一行中。

e.g。

文件内容:
距离,50公里,时间,2小时,日期,2015年1月1日等。

所需的输出结果:

{"Distance":"50km"}
{"Time":"2hrs"}  
{"Date":"1 Jan 2015"}

实际输出
{"文件中的全部内容" :"这里没有任何内容"}

我已经注释掉处理文件内容的行,直到找到逗号,然后以所需格式打印结果,因为这些行无法正常工作。

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

int main ( int argc, char *argv[] )
{     
  if ( argc != 2 )
  {    printf( "Insert filename you wish to open\n Eg: %s filename\n\n", argv[0] );
  }
 else
   {
    FILE *file = fopen( argv[1], "r" );

    if ( file == 0 )
    {
        printf( "There was an error opening the file\n\n" );
    }
    else
    {
        char a,b;
        while  ( ( a = fgetc( file ) ) != EOF )
        {
            printf( "%c", a,b );
//fscanf(file,"%[^,]",a);/* Read data until a comma is detected,  */
// printf("\nData from file:\n{\"%s\" : \"%s\"}\n\n",a,b); /* Display results into {"A":"B"} format */
        }
        fclose( file );
    }
  }
  return 0;
}

1 个答案:

答案 0 :(得分:3)

使用此代码:

char a[50], b[50];
while(1 == fscanf(file," %[^,]",a) ) /* Read data until a comma is detected,  */
{
  fgetc( file ); // Ignore , character
  fscanf(file," %[^,]",b); /* Read data until a comma is detected,  */
  fgetc( file ); // Ignore , character
  printf("{\"%s\":\"%s\"}\n",a,b); /* Display results into {"A":"B"} format */
}

Live demo here

请注意fscanf

中格式化之前的额外空格

要读取的算法是:

while( is reading [a] succesful )
{
  ignore comma
  read [b]
  ignore comma
  print {"a": "b"}
}