1

我在尝试从 .txt 文件中获取行时遇到问题。我在另一段代码和文档中使用了类似的算法,似乎没有问题(= 所有行都已打印)。但是,当我尝试使用 getline (像往常一样)做同样的事情时,我得到了我的字符串 line =“”。我的行不是空的,我有一个预先测试来检查文件是否打开,它确实打开了。下面是我程序中的一个函数。谁能提供一些帮助?谢谢!

我正在尝试运行案例“A”

  void Database::LoginMenu(string code)
  {
    cout << endl;
    cout << "Thank You for Login In, Would You Like To..." << endl;
    cout << "====================================================" << endl;
    cout << "A. View your registration information" << endl;
    cout << "B. Search for others" << endl;
    cout << "C. Search for Upcoming" << endl;
    cout << "D. Enter the Database" << endl;

    char choice, YN;

    cout << endl;
    cout << "Please choose an option: ";
    cin >> choice;

    switch(choice)
    {
    case 'A':
        {
            ifstream myfile("RegistrationInfo.txt");
            string line;
            if(myfile.is_open())
            {   
                while(!myfile.eof())
                {
                    getline(cin, line);

                    if(line[5] == ':')
                    {
                        line = line.substr(7, line.size());
                    }
                    if(line == code)
                    {
                        while(!line.empty())
                        {
                            cout << line << endl;
                        }
                    }
                }
            }   
            cout << "Would you like to return to the menu? (Y/N)";
            cin >> YN;      

            if(YN == 'Y')
            {
                LoginMenu(code);
            }

            myfile.close();
        }
        break;
    case 'B':
        {
            ifstream filein("RegistrationInfo.txt");
            string temp, YN, enteredInfo;
            int n = 0;

            cout << "Who do you wish to search for? :";
            cin >> enteredInfo;

            while(!filein.eof())
            {
                getline(cin, temp);
            }
        }
        break;
    case 'C': upcomingComps();
        break;
    case 'D': DatabaseMenu();
        break;
    }
  }

这是我的txt文件中的几行。

  • C代码:abd50896
  • 姓名:汤姆穆伦妮可拉伯格
  • Compt: 罗格斯舞蹈运动 2012
  • 级别:新人
  • 舞蹈:探戈华尔兹快步伦巴ChaCha Jive
4

2 回答 2

1

建议调用使用 myfile 作为第一个参数,而不是 cin -- getline(myfile, line)-- 因为 cin 代表标准输入,而不是您打开的文件。

于 2012-05-02T05:41:55.360 回答
0

最明显的事情是您打开文件但您正在从 cin 读取。尝试将 cin 更改为 myfile。

于 2012-05-02T05:45:47.247 回答