Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to use std::wifstream for reading its content as a std::wstring

Tags:

c++

stl

wifstream

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 ?

like image 821
Stephane Rolland Avatar asked Feb 25 '23 21:02

Stephane Rolland


1 Answers

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();
like image 149
Steve M Avatar answered Apr 29 '23 14:04

Steve M