file.txt文件的内容如下:
5 3
6 4
7 1
10 5
11 6
12 3
12 4
其中53是一个坐标对。 如何在c++中逐行处理这个数据?
我能够得到第一行,但是我如何得到文件的下一行呢?
ifstream myfile;
myfile.open ("file.txt");
file.txt文件的内容如下:
5 3
6 4
7 1
10 5
11 6
12 3
12 4
其中53是一个坐标对。 如何在c++中逐行处理这个数据?
我能够得到第一行,但是我如何得到文件的下一行呢?
ifstream myfile;
myfile.open ("file.txt");
当前回答
虽然不需要手动关闭文件,但如果文件变量的范围更大,那么这样做是个好主意:
ifstream infile(szFilePath);
for (string line = ""; getline(infile, line); )
{
//do something with the line
}
if(infile.is_open())
infile.close();
其他回答
使用ifstream从文件中读取数据:
std::ifstream input( "filename.ext" );
如果你真的需要逐行阅读,那么可以这样做:
for( std::string line; getline( input, line ); )
{
...for each line in input...
}
但你可能只需要提取坐标对:
int x, y;
input >> x >> y;
更新:
在你的代码中,你使用ofstream myfile;,然而ofstream中的o代表输出。如果你想从文件中读取(输入)使用ifstream。如果你既想读又想写,请使用fstream。
虽然不需要手动关闭文件,但如果文件变量的范围更大,那么这样做是个好主意:
ifstream infile(szFilePath);
for (string line = ""; getline(infile, line); )
{
//do something with the line
}
if(infile.is_open())
infile.close();
展开接受的答案,如果输入是:
1,NYC
2,ABQ
...
你仍然可以应用同样的逻辑,像这样:
#include <fstream>
std::ifstream infile("thefile.txt");
if (infile.is_open()) {
int number;
std::string str;
char c;
while (infile >> number >> c >> str && c == ',')
std::cout << number << " " << str << "\n";
}
infile.close();
这个答案适用于visual studio 2017,如果你想从文本文件中读取相对于编译后的控制台应用程序的位置。
首先将文本文件(在本例中为test.txt)放入解决方案文件夹。编译完成后,将文本文件与applicationName.exe保存在同一文件夹中
spedfy”C: \ Users \ \ \ \ \ " solutionName休息”“solutionName来源"
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream inFile;
// open the file stream
inFile.open(".\\test.txt");
// check if opening a file failed
if (inFile.fail()) {
cerr << "Error opeing a file" << endl;
inFile.close();
exit(1);
}
string line;
while (getline(inFile, line))
{
cout << line << endl;
}
// close the file stream
inFile.close();
}
这是将数据加载到c++程序中的通用解决方案,并使用readline函数。可以对CSV文件进行修改,但是这里的分隔符是一个空格。
int n = 5, p = 2;
int X[n][p];
ifstream myfile;
myfile.open("data.txt");
string line;
string temp = "";
int a = 0; // row index
while (getline(myfile, line)) { //while there is a line
int b = 0; // column index
for (int i = 0; i < line.size(); i++) { // for each character in rowstring
if (!isblank(line[i])) { // if it is not blank, do this
string d(1, line[i]); // convert character to string
temp.append(d); // append the two strings
} else {
X[a][b] = stod(temp); // convert string to double
temp = ""; // reset the capture
b++; // increment b cause we have a new number
}
}
X[a][b] = stod(temp);
temp = "";
a++; // onto next row
}