使用字符串流中的ifstream转换为字符串

时间:2016-09-05 13:58:47

标签: c++ ifstream stringstream

我真的不明白为什么如果我使用 f.open(filename.c_str(),ios :: in)只有在filename是定义为字符串类型的字符串时才有效,但是如果文件名是从字符串流类型转换而来的话。

我需要stringstream类型,因为我必须打开不同的文件夹,所以我使用该程序来创建想要的地址。

谢谢你的合作。

using namespace std;
//c++ -o iso iso.cpp `root-config --cflags --glibs`
int main (int argc, char **argv)
{
    int n_gruppo, n_righe;

    cout << "write the number of the folder: " << endl;
    cin >> n_gruppo;
    int num_vol[6]={1,2,3,5,7,10};

    for (int i = 0; i < 6; ++i)
    {
        //combining the string
        stringstream ss;    
        ss <<"/home/student/isoterma"<<n_gruppo<<"/pressione_vol"<<num_vol[i]<<".txt"<<endl;
        string filename = ss.str();//conversion sstream in string
        cout << filename << endl;

        double sumsq = 0, sum = 0, s;
        //cicle of reading
        ifstream f ;
        f.open(filename.c_str(), ios::in);//ricorda di mettere '.c_str()' infondo se è una stringa

        for (int io = 0; io < n_righe ; io++)
        {
            f >> s;
            cout << "value N° " << io << " is" << s << endl;
            sum += s;
            sumsq += pow(s,2);
        }
        f.close();

      }
    return 0;
}

1 个答案:

答案 0 :(得分:0)

您发布的代码存在三个问题:

  1. 写信给stringstream时,最后不应包含 std::endl。否则,filename的结果字符串在末尾包含一个额外的换行符,这很可能导致文件打开失败。因此,请替换:

    ss <<"/home/student/isoterma"<<n_gruppo<<"/pressione_vol"<<num_vol[i]<<".txt"<<endl;
    

    用这个:

    ss <<"/home/student/isoterma"<<n_gruppo<<"/pressione_vol"<<num_vol[i]<<".txt";
    

    这很可能会解决您的问题。另外,请考虑使用std::ostringstream代替std::stringstream,因为您只是在写作而不是阅读。

  2. 您的变量n_righe未被初始化使用。在您的实际代码中,您可能已初始化为每个文件中的行数。但是,您应该考虑使用this SO answer来读取文件中的所有行。

  3. 在阅读之前,您应该始终检查ifstream是否成功打开。请参阅this SO answer