[求助]怎样从文本文件中读取中文字符阿?
小弟在用VC++2005编程时,想从文本文件123.txt中读取中文,显示在文本框textBox1中,可是编写了如下程序。显示的却是乱码,这是因为用文本流读取的是ASCII字符串,而不是中文字符串。求教大家如何把ASCII字符串转回中文字符串阿?
拜谢
String^ filename="123.txt";
try
{
StreamReader^ din=File::OpenText(filename);
String^ str;
int count=0;
while((str = din->ReadLine())!=nullptr)
{
count++;
textBox1->Text +=str;
}
}
catch(Exception^e)
{
if(dynamic_cast<FileNotFoundException^>(e))
{
textBox1->Text=L"文本未找到"+"文本";
}
}
[此贴子已经被作者于2007-3-30 20:32:23编辑过]