我正在开发一个 C++ MFC 应用程序(使用 Visual Studio 2010)
我已经编写了用于在文件中存储数据的代码(代码在按钮单击事件中)
wfstream myfile;
myfile.open("ttt.txt");
if(!myfile)
MessageBox(L"Problem");
else
{
myfile <<"arash";
myfile << ";program";
myfile << ";test";
myfile << ";a";
MessageBox(L"OK");
myfile.close();
}
但输出文件是:
arash;program;test;aحححححححححح
而且我不知道حححححححححح
是从哪里来的?!!!
我也试过
myfile << _T("arash");
myfile << _T(";program");
myfile << _T(";test");
myfile << _T(";a");
但它什么都没有改变
我能做什么?
谢谢