读取文本文件,C++
Read a text file,C++
我想阅读这个有 6 列的文本文件。问题是在第二列中,输入的形式是 class 间隔,我不知道如何阅读,我最后一次尝试没有完成这项工作。此外,我想打印第二列和第三列,但它正在做其他事情。请帮忙。
#include <iostream>
#include <cmath>
#include <fstream>
#include <sstream>
int main()
{
std::ifstream f("t2kflux.txt");
std::string line;
while (std::getline(f, line))
{
float serial;
double Energy, Energy2;
double mu;
double mubar;
double e;
double ebar;
std::istringstream ss(line);
ss >> serial >> Energy >> Energy2 >> mu >> mubar >> e >> ebar;
std::cout << Energy << "\t" << mu << "\n";
}
}
数据样本为
Flux (/cm^2/1E21p.o.t/50MeV)
Bin# Energy (GeV) numu anti-numu nue anti-nue
---------------------------------------------------------------------------------
1 0.00- 0.05 1.27e+04 1.64e+04 1.80e+02 2.97e+01
2 0.05- 0.10 5.40e+04 5.41e+04 1.02e+03 1.23e+02
3 0.10- 0.15 1.11e+05 3.98e+04 2.17e+03 2.12e+02
4 0.15- 0.20 1.75e+05 3.10e+04 3.23e+03 2.86e+02
5 0.20- 0.25 2.62e+05 2.78e+04 4.08e+03 3.56e+02
6 0.25- 0.30 3.68e+05 2.77e+04 4.73e+03 4.15e+02
7 0.30- 0.35 4.83e+05 2.83e+04 5.27e+03 4.61e+02
8 0.35- 0.40 5.97e+05 2.92e+04 5.58e+03 4.93e+02
9 0.40- 0.45 7.21e+05 2.97e+04 5.80e+03 5.18e+02
10 0.45- 0.50 8.89e+05 2.93e+04 5.77e+03 5.31e+02
11 0.50- 0.55 1.11e+06 2.93e+04 5.72e+03 5.35e+02
12 0.55- 0.60 1.24e+06 2.98e+04 5.53e+03 5.31e+02
13 0.60- 0.65 1.23e+06 2.92e+04 5.33e+03 5.26e+02
14 0.65- 0.70 1.14e+06 2.80e+04 5.03e+03 5.15e+02
15 0.70- 0.75 9.10e+05 2.59e+04 4.76e+03 5.05e+02
我编写了以下代码,它对我来说工作正常。希望对您有所帮助。
#include<iostream>
#include<cmath>
#include<fstream>
#include<string>
#include<sstream>
int main()
{
std::ifstream f("honey.txt");
std::string line;
while(std::getline(f,line))
{
float serial;
std::string Energy,Energy2;
std::string mu;
std::string mubar;
std::string e;
std::string ebar;
std::istringstream ss(line);
ss>>serial>>Energy>>Energy2>>mu>>mubar>>e>>ebar;
std::cout<<Energy<<"\t"<<mu<<"\n";
}
}
解决此问题的其他方法是:
第 1 步:首先创建一个从文件中删除破折号 (-) 的程序。
第 2 步:使用您的程序(如所讨论的那样),它将正常工作。
根据我对你正在尝试做的事情的了解,我认为你有两个问题。
首先,您正在阅读前三行,就好像它们是数据一样,但它们不是,它们是 header 信息。所以我认为你需要跳过前三行:
// Skip first three lines
std::getline(f, line);
std::getline(f, line);
std::getline(f, line);
另一个是您需要阅读 class 间隔值之间的短划线“-”字符。
所以总的来说是这样的:
#include <iostream>
#include <cmath>
#include <fstream>
#include <sstream>
int main()
{
std::ifstream f("t2kflux.txt");
std::string line;
// Skip first three lines
std::getline(f, line);
std::getline(f, line);
std::getline(f, line);
while(std::getline(f, line))
{
float serial;
double Energy, Energy2;
double mu;
double mubar;
double e;
double ebar;
char dash; // to absorb the '-' separator
std::istringstream ss(line);
ss >> serial >> Energy >> dash >> Energy2 >> mu >> mubar >> e >> ebar;
std::cout << Energy << "\t" << mu << "\n";
}
}
我想阅读这个有 6 列的文本文件。问题是在第二列中,输入的形式是 class 间隔,我不知道如何阅读,我最后一次尝试没有完成这项工作。此外,我想打印第二列和第三列,但它正在做其他事情。请帮忙。
#include <iostream>
#include <cmath>
#include <fstream>
#include <sstream>
int main()
{
std::ifstream f("t2kflux.txt");
std::string line;
while (std::getline(f, line))
{
float serial;
double Energy, Energy2;
double mu;
double mubar;
double e;
double ebar;
std::istringstream ss(line);
ss >> serial >> Energy >> Energy2 >> mu >> mubar >> e >> ebar;
std::cout << Energy << "\t" << mu << "\n";
}
}
数据样本为
Flux (/cm^2/1E21p.o.t/50MeV)
Bin# Energy (GeV) numu anti-numu nue anti-nue
---------------------------------------------------------------------------------
1 0.00- 0.05 1.27e+04 1.64e+04 1.80e+02 2.97e+01
2 0.05- 0.10 5.40e+04 5.41e+04 1.02e+03 1.23e+02
3 0.10- 0.15 1.11e+05 3.98e+04 2.17e+03 2.12e+02
4 0.15- 0.20 1.75e+05 3.10e+04 3.23e+03 2.86e+02
5 0.20- 0.25 2.62e+05 2.78e+04 4.08e+03 3.56e+02
6 0.25- 0.30 3.68e+05 2.77e+04 4.73e+03 4.15e+02
7 0.30- 0.35 4.83e+05 2.83e+04 5.27e+03 4.61e+02
8 0.35- 0.40 5.97e+05 2.92e+04 5.58e+03 4.93e+02
9 0.40- 0.45 7.21e+05 2.97e+04 5.80e+03 5.18e+02
10 0.45- 0.50 8.89e+05 2.93e+04 5.77e+03 5.31e+02
11 0.50- 0.55 1.11e+06 2.93e+04 5.72e+03 5.35e+02
12 0.55- 0.60 1.24e+06 2.98e+04 5.53e+03 5.31e+02
13 0.60- 0.65 1.23e+06 2.92e+04 5.33e+03 5.26e+02
14 0.65- 0.70 1.14e+06 2.80e+04 5.03e+03 5.15e+02
15 0.70- 0.75 9.10e+05 2.59e+04 4.76e+03 5.05e+02
我编写了以下代码,它对我来说工作正常。希望对您有所帮助。
#include<iostream>
#include<cmath>
#include<fstream>
#include<string>
#include<sstream>
int main()
{
std::ifstream f("honey.txt");
std::string line;
while(std::getline(f,line))
{
float serial;
std::string Energy,Energy2;
std::string mu;
std::string mubar;
std::string e;
std::string ebar;
std::istringstream ss(line);
ss>>serial>>Energy>>Energy2>>mu>>mubar>>e>>ebar;
std::cout<<Energy<<"\t"<<mu<<"\n";
}
}
解决此问题的其他方法是:
第 1 步:首先创建一个从文件中删除破折号 (-) 的程序。
第 2 步:使用您的程序(如所讨论的那样),它将正常工作。
根据我对你正在尝试做的事情的了解,我认为你有两个问题。
首先,您正在阅读前三行,就好像它们是数据一样,但它们不是,它们是 header 信息。所以我认为你需要跳过前三行:
// Skip first three lines
std::getline(f, line);
std::getline(f, line);
std::getline(f, line);
另一个是您需要阅读 class 间隔值之间的短划线“-”字符。
所以总的来说是这样的:
#include <iostream>
#include <cmath>
#include <fstream>
#include <sstream>
int main()
{
std::ifstream f("t2kflux.txt");
std::string line;
// Skip first three lines
std::getline(f, line);
std::getline(f, line);
std::getline(f, line);
while(std::getline(f, line))
{
float serial;
double Energy, Energy2;
double mu;
double mubar;
double e;
double ebar;
char dash; // to absorb the '-' separator
std::istringstream ss(line);
ss >> serial >> Energy >> dash >> Energy2 >> mu >> mubar >> e >> ebar;
std::cout << Energy << "\t" << mu << "\n";
}
}