MFC CFile追加字符串到问题件,追加CString到文件。追加创建Unicode格式

bool CMFCcodeDlg::SaveAllScanCode(CString strSn, CString strMac, CString strBt, CString strIMEI)
{
	CString codeRecord = _T("sn_mac_bt_imei_record.txt");
	CFile mFile;
	mFile.Open(codeRecord, CFile::modeCreate|CFile::modeNoTruncate|CFile::modeReadWrite);
	mFile.SeekToEnd();
	CString allCode;
	allCode.Format(_T("SN:%s\tMAC:%s\tBT:%s\tIMEI:%s\r\n"), strSn, strMac, strBt, strIMEI);
	mFile.Write(allCode, allCode.GetLength()*sizeof(wchar_t));
	mFile.Flush();
	mFile.Close();

	return true;
}



出现写文件乱码,其实关键点在sizeof(wchar_t), 注意需要指定为哪种字符宽度Write( cstr, len*sizeof(wchar_t),由于字符格式原因导致无法正常写CString字符串到文件。

你可能感兴趣的:(MFC)