从文本文件中读取数据到结构数组中

问题描述:

我以前见过这个问题,但找不到帮助我解决问题的答案。这里发生了一些事情。这是显示菜单,这将允许用户:退出返回上一级菜单,从文本文件中读取数据到结构数组中

  1. 查看费用,
  2. 更新费用,或

该信息被保存到应该输入和输出到的数据文件中。尝试查看文件中的数据时,第一个菜单选项有问题。假设已经存在包含该信息的数据文件C:\danceexpenses.txt

DJ 
100 
Site 
100 
Food 
100 
Favors 
100 
Security 
100 
Ticket printing 
100 
Etc. 
100 
etc. 
100 

该程序将不显示该信息。它只给每个空行。有什么我需要添加配置输出?

void charges() 
{ 
    //Structures to hold data 
    struct Expenses 
    { 
     string name; 
     double cost; 
    }; 

    int chargesChoice; 
    const int CHARGES_MENU_VIEW = 1, CHARGES_MENU_UPDATE = 2, CHARGES_MENU_QUIT = 3; 
    const int NUM_EXPENSES = 8; //number of expenses 
    Expenses danceExpenses[NUM_EXPENSES]; //array of structures 
    int index; //loop counter 

    cout << "\nWhat would you like to do?\n\n" 
     << "1. View charges\n" 
     << "2. Update charges\n" 
     << "3. Return to main menu\n" 
     << "Enter your choice: "; 
    cin >> chargesChoice; 

    while (chargesChoice < CHARGES_MENU_VIEW || chargesChoice > CHARGES_MENU_QUIT) 
    { 
     cout << "\nPlease enter a valid menu choice: "; 
     cin >> chargesChoice;  
    } 

    switch (chargesChoice) 
    { 
     case CHARGES_MENU_VIEW: //Display the expenses data 
      myFile.open("c:\\danceexpenses.txt", ios::in); //open file 
      if (!myFile) 
      { 
       cout << "Error opening file. Program aborting.\n"; 
       return; 
      } 
      char output[100]; 
      cout << "\nHere are the expected expenses for the dance:\n"; 
      for (index = 0; index < NUM_EXPENSES; index++) 
       cout << danceExpenses[index].name << endl << endl; 
      myFile.close(); //close file 
      break; 
     case CHARGES_MENU_UPDATE: 
      //get expense data 
      myFile.open("c:\\danceexpenses.txt", ios::out); //open file 
      if (!myFile) 
      { 
       cout << "Error opening file. Program aborting.\n"; 
       return; 
      } 
      for (index = 0; index < NUM_EXPENSES; index++) 
      { 
       cout << "Enter the name of the expense: "; 
       cin.ignore(); 
       getline(cin, danceExpenses[index].name); 
       cout << "Enter the expected cost for this expense: "; 
       cin >> danceExpenses[index].cost; 
      } 

      //Write data to file 
      for (index = 0; index < NUM_EXPENSES; index++) 
      { 
       myFile << danceExpenses[index].name << endl; 
       myFile << danceExpenses[index].cost << endl; 
      } 
      myFile.close(); //close file 
      break; 
     case CHARGES_MENU_QUIT: 
      showMenu(); 
      break; 
    } 
    charges(); 
} 
+1

你的代码似乎有无限尾递归,这不会导致幸福,从长远来看。 – 2013-04-20 19:13:09

+1

嗯我没有看到任何读取访问该文件。或者做一个失踪的东西? – 2013-04-20 19:25:59

如果你的第一个动作是输入1,则代码应该进入:

case CHARGES_MENU_VIEW: //Display the expenses data 
     myFile.open("c:\\danceexpenses.txt", ios::in); //open file 
     if (!myFile) 
     { 
      cout << "Error opening file. Program aborting.\n"; 
      return; 
     } 
     char output[100]; 
     cout << "\nHere are the expected expenses for the dance:\n"; 
     for (index = 0; index < NUM_EXPENSES; index++) 
      cout << danceExpenses[index].name << endl << endl; 
     myFile.close(); //close file 
     break; 

这将打开舞蹈开支文件,但并没有读取。然后它遍历尚未初始化的费用列表,并关闭输入文件。还有一个未使用的变量output

打印出来之前,您需要将数据读入内存。

int num = 0; 
while (myFile >> danceexpenses[num].name >> danceexpenses[num].cost) 
    num++; 

for (index = 0; index < num; index++) 
    cout << danceExpenses[index].name << endl << endl; 
+0

这工作,谢谢:) – ABCO 2013-04-20 19:40:10