我想从文件中读取:文件是多,基本上我需要去在每个“单词”。 词是什么非空间。
样本输入文件将是:
示例文件:
测试2D
字3.5
输入
{
测试13.5 12.3
另一个{
测试145.4
}
}
所以,我想是这样的:
ifstream inFile(fajl.c_str(), ifstream::in);
if(!inFile)
{
cout << "Cannot open " << fajl << endl;
exit(0);
}
string curr_str;
char curr_ch;
int curr_int;
float curr_float;
cout << "HERE\n";
inFile >> curr_str;
cout << "Read " << curr_str << endl;
问题是,当它读取新行它只是挂起。 我读测试前13.5一切,但一旦达到该行它没有做任何事情。 谁能告诉我什么,我做错了什么? 如何做到这一点的任何更好的建议???
我基本上是需要经过文件,并在一次去一个“字”(非白色字符)。 一世
谢谢
您打开一个文件“INFILE”但是从“给std :: cin”什么特别的原因正在读?
/*
* Open the file.
*/
std::ifstream inFile(fajl.c_str()); // use input file stream don't.
// Then you don't need explicitly specify
// that input flag in second parameter
if (!inFile) // Test for error.
{
std::cerr << "Error opening file:\n";
exit(1);
}
std::string word;
while(inFile >> word) // while reading a word succeeds. Note >> operator with string
{ // Will read 1 space separated word.
std::cout << "Word(" << word << ")\n";
}
不知道如何“的精神,” iostream库的这个,但你可以用格式化输入做到这一点。 就像是:
char tempCharacter;
std::string currentWord;
while (file.get(tempCharacter))
{
if (tempCharacter == '\t' || tempCharacter == '\n' || tempCharacter == '\r' || tempCharacter == ' ')
{
std::cout << "Current Word: " << currentWord << std::endl;
currentWord.clear();
continue;
}
currentWord.push_back(tempCharacter);
}
那样有用吗?