5

I am trying this:

std::wstringstream wstrStream;
std::wifstream wifStream(str.c_str());
wifStream >> wstrStream;

but I got this compilation error:

     error C2664: 'std::basic_istream<_Elem,_Traits>::_Myt &std::basic_istream<_Elem,_Traits>::operator >>
(std::basic_istream<_Elem,_Traits>::_Myt &(__cdecl *)
(std::basic_istream<_Elem,_Traits>::_Myt &))' : cannot convert parameter 1 from
'std::wstringstream' to 'std::basic_istream<_Elem,_Traits>::_Myt &(__cdecl *)
(std::basic_istream<_Elem,_Traits>::_Myt &)'
            with
            [
                _Elem=wchar_t,
                _Traits=std::char_traits<wchar_t>
            ]
            and
            [
                _Elem=wchar_t,
                _Traits=std::char_traits<wchar_t>
            ]

I understand that operator >> is not implemented for wchar_t.

I found little documentation and references to std::wifstream. How would you use it ?

Stephane Rolland
  • 38,876
  • 35
  • 121
  • 169

2 Answers2

6

Operator >> isn't defined for two streams. If you want to read a whitespace-delimited string from the file, use

std::wstring s;
wifStream >> s;

If you mean that you want to copy the entire file into the stringstream, use

wstrStream << wifStream.rdbuf();
Steve M
  • 8,246
  • 2
  • 25
  • 26
2

You don't need to use a wstringstream anywhere here - the wifstream is a wstringstream under the hood. You just need to extract directly into a std::wstring.

Puppy
  • 144,682
  • 38
  • 256
  • 465