尝试使用ofstream来编写一些基本的文本数据

时间:2011-02-16 17:47:50

标签: c++ ofstream

我只是想把一些文本数据写到制表符分隔的文件中。这是代码。 Name()和File()返回CStringW,而ID()返回int,

ofstream myfile(file);

if (myfile.is_open())
{
    v::iterator i = begin();

    while(i != end())
    {
        myfile << i->Name() << L"\t" << i-ID() << L"\t" << i->File() << endl;
       i++;
    }

    myfile.close();

 }

但是不是获得我期望的输出,而是文件看起来像这样

001554B00043F66840043F668001554F8
001555400043F6685440043F66800155588
001555F00043F6686000043F66800155638
001556B00043F6686240043F668001556F8
001557700043F6686680043F668001557B8
001558300043F6686800043F66800155878
001558E00043F6688560043F66800155928
001559C00043F6688720043F66800155A08
00155A700043F6689480043F66800155AB8
00155B200043F66810440043F66800155B68
00155BD00043F66811320043F66800155C18
00155C800043F66812840043F66800155CC8
00155D300043F66814040043F66800155D78
00155DE00043F66815360043F66800155E28
00155E900043F66815840043F66800155ED8
00155F400043F66816880043F66800155F88
001560180043F66817040043F66800156050
001560C80043F66817360043F66800156110

是什么给出了?

2 个答案:

答案 0 :(得分:3)

使用wofstream,其const wchar_t *具有相应的运算符。

wchar_t *ostream将使用operator<<(ostream &, void *),因为wchar_t *

没有操作符

编辑:在CStringW上使用.GetString()。

答案 1 :(得分:1)

我经常看到的处理方法是将CStringW转换为LPCWSTR,如下所示:

myfile << (LPCWSTR)i->Name() << L"\t" << i-ID() << L"\t" << (LPCWSTR)i->File() << endl;