MFC如何把int类型数据输入保存到txt文件中

2024-12-01 19:01:34
推荐回答(2个)
回答1:

int i = 56789;
CString str;
str.Format(_T("%d"),i);
file.Write(str.GetBuffer(),str.GetLength());
str.ReleaseBuffer();
file.Close();

int类型变量,直接写入文件,是16进制格式,占4个byte(char)大小。

要想将int写入文本文件并直观可见,需要先转换为字符串,再写入文件。

回答2:

为什么没有指定写入哪一个文件呢?