我正在尝试在大学里为我的c ++课程做这个项目,而且我无法逐行读取文本文件,然后将文本从文件输出到控制台。这是我的代码:
void readFile()
{
cout << "Reading Text File" << endl << endl;
int huge, large, medium, small, remainder;
string line0, line1, line2, line3, line4, line5, line6, numberOrdered;
ifstream fin;
fin.open("DoflingyOrder.txt");
while(getline(fin,numberOrdered))
{
getline(fin, line1);
cout << "Name: " << line1 << endl;
getline(fin, line2);
cout << "Street Address: " << line2 << endl;
getline(fin, line3);
cout << "City, State and Zip Code: " << line3 << endl;
getline(fin, numberOrdered);
cout << "Number of Doflingies Ordered: " << numberOrdered << endl << endl;
}
它会忽略文本文件中的名称,这意味着它是一个关闭的行。有什么建议?如果有人需要,我可以将文本文件和.cpp文件上传到Dropbox。
以下是文本文件的示例:
Leslie Knope 普利茅斯街1456号 Pawnee,IN 47408 356 安帕金斯 217 Lowell Drive Pawnee,IN 47408 9 汤姆哈维福德 689 Lil Sebastian Avenue Pawnee,IN 47408 1100
“Leslie Knope”之前没有空位。
答案 0 :(得分:1)
您最后发布的输入......
Leslie Knope 1456 Plymouth Street Pawnee,IN 47408 356
Ann Perkins 217 Lowell Drive Pawnee,IN 47408 9
Tom Haveford 689 Lil Sebastian Avenue Pawnee,IN 47408 1100
...显示所有getline
错误,因为他们一次读取整行(默认情况下)。
这实际上是一个相当困难/痛苦的问题,而现实世界&#34;数据,对于这些数据来说,完美的解决方案非常困难,因为有些地址可能首先说的是建筑名称很难与人名的一部分区分开来,而且多字的城镇名称会很难区分早期地址细节的结尾。教育用途的合理解决方案可能是:
#define EXPECT(X) \
do { \
if (!(X)) throw std::runtime_error("EXPECT(" #X ")"); \
} while (false)
std::string first, last;
std::string street, town_state_postcode;
int num;
std::string word;
while (fin >> first)
{
EXPECT(fin >> last);
while (fin >> word)
{
if (word[word.size() - 1] != ',')
if (street.empty())
street = word;
else
street += ' ' + word;
else // trailing comma indicates town
{
town_state_postcode = word; // town
EXPECT(fin >> word); // state
town_state_postcode += ' ';
town_state_postcode += word;
EXPECT(fin >> word);
town_state_postcode += ' ';
town_state_postcode += word;
EXPECT(fin >> numberOrdered);
// SUCCESS use the data here
// ...
}
}
}
上面的代码做了这些简单的假设:
该名称由名字和姓氏组成
城镇名称是带有逗号的单个单词
对于使用真实世界数据的更常用的准确解决方案,您需要创建例如可能会终止&#34; street&#34;地址的一部分,例如&#34; Drive&#34;,&#34; Avenue&#34;,&#34; Street&#34;,&#34; Close&#34;如果您可以获得创建文本文件的任何内容,将一些分隔符注入到传递结构的数据中(甚至切换到类似XML的数据),那将会更好。
答案 1 :(得分:0)
string line;
for(int i=0;;i++)
{
if(!getline(fin,line))break;
if(i%4==0)cout<<"Name: "<<line<<endl;
else if(i%4==1)cout<<"Street Address: " << line<< endl;
else if(i%4==2)cout<<"City, State and Zip Code: " << line << endl;
else cout << "Number of Doflingies Ordered: " << line << endl << endl;
}