7
void docDB(){
     int sdb = 0;
     ifstream dacb("kitudacbiet.txt");
     if(!dacb.is_open())
         cout<<"Deo doc dc file"<<endl;
     else{
          while(!dacb.eof()){
               dacb>>dbiet[sdb].kitu;
               dacb>>dbiet[sdb].mota;
               //getline(dacb,dbiet[sdb].mota);
               /*
               string a="";
               while((dacb>>a)!= '\n'){
                //strcat(dbiet[sdb].mota,a);
                dbiet[sdb].mota+=a;
               }
               */
               sdb++;
          }
     }

}

文本文件:“kitudacbiet.txt”

\ Dau xuyet phai
@ Dau @
# Dau #
$ Ky hieu $
( Dau mo ngoac
) Dau dong ngoac

屏幕

我想将第一行字符串读入 dbiet[sdb].kitu 并将其余行读入 dbiet[sdb].mota

示例:第 1 行 = \ Dau xuyet phai

dbiet[sdb].kitu = "\" 和 dbiet[sdb].mota = "Dau xuyet phai"

我想逐行阅读,直到遇到下线字符('\n')。这个怎么做。对不起,我的英语不好。谢谢

4

3 回答 3

28

要将文件中的整行读入字符串,请std::getline像这样使用:

 std::ifstream file("my_file");
 std::string temp;
 std::getline(file, temp);

您可以循环执行此操作,直到文件结束,如下所示:

 std::ifstream file("my_file");
 std::string temp;
 while(std::getline(file, temp)) {
      //Do with temp
 }

参考

http://en.cppreference.com/w/cpp/string/basic_string/getline

http://en.cppreference.com/w/cpp/string/basic_string

于 2012-11-25T14:31:11.477 回答
5

看起来您正在尝试解析每一行。另一个答案向您展示了如何getline在循环中使用来分隔每一行。您将需要的另一个工具是istringstream分隔每个标记。

std::string line;
while(std::getline(file, line))
{
    std::istringstream iss(line);
    std::string token;
    while (iss >> token)
    {
        // do something with token
    }
}
于 2012-11-25T14:36:49.730 回答
1

getline(fin, buffer, '\n')
在哪里fin打开文件(ifstream 对象)并且bufferstring/char要复制行的类型。

于 2012-11-25T14:31:39.140 回答