Outputting 'wchar_t*' to an 'ofstream'

Aan picture Aan · Oct 15, 2012 · Viewed 18.9k times · Source

I want to output a text to a file via two pointers that I have declared:

wchar_t   *Col1="dsffsd", *Col2="sdfsf";

Here is what I have tried:

std::ofstream fout;
fout.open(NativeDatabasePathHist);
fout<<"testing";
fout<<" "<<Col1<<" "<<Col2;
fout.close();

And here is what I am getting:

testing 113 113

Why is it that when I print Col1 and Col2, I am getting numbers instead of strings?

Answer

Dmitriy picture Dmitriy · Feb 13, 2013

First, use std::wofstream instead of std::ofstream.

Also, use the L prefix on your text string to indicate that your text is wide character text:

wchar_t   *Col1=L"dsffsd"