如何从C ++中的文本文件中读取Unicode符号

时间:2013-01-19 09:41:49

标签: c++ unicode

我无法使用ifstream()从我的文本文件(UTF8)中读取Unicode符号,但有一些奇怪的东西。你能帮我看一下使用的方法以及ifstream函数中使用的参数吗?

1 个答案:

答案 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();