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");
当前回答
这个答案适用于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();
}
其他回答
既然你的坐标是成对的,为什么不为它们写一个结构呢?
struct CoordinatePair
{
int x;
int y;
};
然后你可以为istreams写一个重载的提取操作符:
std::istream& operator>>(std::istream& is, CoordinatePair& coordinates)
{
is >> coordinates.x >> coordinates.y;
return is;
}
然后你可以把坐标文件直接读入一个向量,像这样:
#include <fstream>
#include <iterator>
#include <vector>
int main()
{
char filename[] = "coordinates.txt";
std::vector<CoordinatePair> v;
std::ifstream ifs(filename);
if (ifs) {
std::copy(std::istream_iterator<CoordinatePair>(ifs),
std::istream_iterator<CoordinatePair>(),
std::back_inserter(v));
}
else {
std::cerr << "Couldn't open " << filename << " for reading\n";
}
// Now you can work with the contents of v
}
这是将数据加载到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
}
这个答案适用于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();
}
首先,创建一个ifstream:
#include <fstream>
std::ifstream infile("thefile.txt");
两种标准方法是:
假设每一行由两个数字组成,并逐标记读取: Int a, b; While (filile >> a >> b) { //进程对(a,b) } 基于行的解析,使用字符串流: # include < sstream > # include <字符串> std:: string行; While (std::getline(filile, line)) { std:: istringstream iss(线); Int a, b; 如果(!(iss >> a >> b)) {break;} //错误 //进程对(a,b) }
您不应该混淆(1)和(2),因为基于标记的解析不会占用换行符,所以如果在基于标记的提取已经到达一行末尾之后使用getline(),您可能会得到虚假的空行。
虽然不需要手动关闭文件,但如果文件变量的范围更大,那么这样做是个好主意:
ifstream infile(szFilePath);
for (string line = ""; getline(infile, line); )
{
//do something with the line
}
if(infile.is_open())
infile.close();