how to use std::wifstream for reading its content as a std::wstring
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<_E开发者_运维百科lem,_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 ?
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();
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.
精彩评论