我无法使用ifstream()从我的文本文件(UTF8)中读取Unicode符号,但有一些奇怪的东西。你能帮我看一下使用的方法以及ifstream
函数中使用的参数吗?
答案 0 :(得分:0)
你可以使用std命名空间字符串和ifstream。
ifstream in("1.txt");
string s;
while(getline(in,s)
{
for(int i = 0; i<s.length; i++){
cout << s[i] ;
}
}
in.close();