用C ++写入.csv文件

时间:2019-05-15 22:58:09

标签: c++ xcode csv

我正在尝试将数据输出到.csv文件中,但是当我运行该程序时,它不会更改输出文件。好像我根本没有运行该程序。它构建成功。

我用XCode创建了这个项目。 ".xcodeproject""example.csv"文件位于工作目录(桌面-> )中。 "main.cpp"位于桌面-> -> 中,并且是该文件夹中的唯一文件。我正在使用“发布”进行构建。

#include <iostream>
#include <fstream>

int main( int argc, char* argv[] )
{
    std::ofstream myfile;
    myfile.open ("example.csv");
    myfile << "This is the first cell in the first column.\n";
    myfile << "a,b,c,\n";
    myfile << "c,s,v,\n";
    myfile << "1,2,3.456\n";
    myfile << "semi;colon";
    myfile.close();
    return 0;
}

要成功写入此.csv文件,我缺少什么?

0 个答案:

没有答案