从文件C ++读取空格

时间:2018-07-18 06:28:51

标签: c++ string file

我正在使用以下代码片段将文件中的所有内容读取为字符串:

fstream file;
file.open("text.txt");
while(!file.eof()){
    file >> line;
    code += line;
}
file.close();

通过反复试验,我一直试图将noskipws放在不同的地方,但到目前为止还没有运气。 我文件的内容是:87HBE MEHB4,它是Vigenere编码的Hello World。

我应该在哪里放noskipws,或者对于这个简单的问题还有别的优雅解决方案吗?

0 个答案:

没有答案