1

我是 C++ 的初学者。我已经通过一个对象数组输入了变量的值(属于一个类)。现在我如何将它们写入文本文件列,如下所示?谢谢.........

SLNO    NAME      ADDRESS        PHONE NO     TYPE      
   1.   ABC       xyzagsgshsh    27438927     Mobile
   2.   QWE       qwhjbbdh       78982338     Landline

这是我存储数据的代码。如何将其制作成内容如下的文本文件?

#include<iostream>
#include<string>
#include<fstream>
using namespace std;

class emp
{
    string name,address,phone,type;
    public:
    void getdata();
}obj[5];

void emp::getdata()
{
    cout<<"\nEnter the details:";
    cout<<"\nName: ";cin>>name;
    cout<<"Address:";
    cin>>address;
    cout<<"Phone number: "; cin>>phone;
    cout<<"\nType of phone? (Landline/Mobile) :";
    cin>>type;
}

int main()
{
    ofstream ptr;
    ptr.open("Phone.dat",ios::out);
    cout<<"\nEnter the no.of.records: ";
    int n,i;
    cin>>n;
    for(i=0;i<n;i++)
    {
        obj[i].getdata();
        ptr.write((char*)&obj[i],sizeof(obj[i]));
    }
    return 0;
}
4

3 回答 3

2

由于您已经创建了一个文件流,您可以利用输出标志(std::left、std::right 和 std::setw):

http://www.cplusplus.com/reference/iomanip/setw/

http://www.cplusplus.com/reference/ios/left/

现在,为了确保存储在 emp 类的任何对象中的任何字符串不超过您通过 std::setw 分配给 ofstream/ostream 的大小,您可以使用 string::resize。

于 2013-03-28T12:18:15.513 回答
0

您可以使用字符串/文件流、换行符和std::setw

ofstream myfile;
myfile.open ("example.txt");
myfile << "SLNO" << std::setw(10) << "NAME" << std::setw(10) << "ADDRESS" << std::setw(10) << "PHONE NO" << std::setw(10) << "TYPE\n";

这将用空格分隔所有文本10-text lenght并将其放入example.txt

记得检查文件的有效性并关闭文件。

于 2013-03-28T11:39:44.113 回答
0

这取决于上下文。对于控制台窗口的简单输出(或者如果您在其他地方有固定宽度的字体,但这种情况很少见),您可以std::setw在每个元素之前使用指定字段的宽度。但是,对于文本 ( std::string),通常更容易使用resize,并从一开始就将其设为正确的大小。

于 2013-03-28T11:39:55.783 回答