我想使用 Cfile 打印C++打印的行数。我想根据日期写行数。例如在同一个文件中写入两天,
Nr 日期时间代码值1 10/6/2019 09:10 220 552 10/6/2019 10:16 33 233 10/6/2019 10:50 55 111 11/6/2019 03:55 11 152 11/6/2019 08:22 18 20
一切都正确,除了行号
CString strDate, strYearShort, strTime;
strYearShort = (CString)Datum.year;
strYearShort = strYearShort.Right(2);
strDate = (CString)Datum.day + '.' + (CString)Datum.month + '.' + strYearShort;
strTime = (CString)Zeit.hour + ':' + (CString)Zeit.minute;
buf.Format(_T("%st%st%st%st%st%drnrn"), strDate, strTime, (CString)number, (CString)cardnumber, value);
enter code hereif (CTime::GetCurrentTime().GetDay() != lastWriteDay) {
for (i = 1, i < 100, i++) {
int Nu = i,
}
}
else if (CTime::GetCurrentTime().GetDay() = lastWriteDay) {
Nu == 0;
or (i = 1, i < 100, i++) {
Nu = i,
}
}
保留上次写入日期的变量:
// Should be persistent for lifetime of app:
// eg: global, static, or class member
int lastWriteDay = 0;
写入新行时,将上次写入日期与当前日期进行比较。如果日期不同,请重置行号。
....
if (CTime::GetCurrentTime().GetDay() != lastWriteDay) {
number = 1;
lastWriteDay = CTime::GetCurrentTime().GetDay();
}
// Do write....
....
然后,您可以在创建字符串时更新数字:
buf.Format(_T("%st%st%dt%dt%st%drnrn"),
strDate,
strTime,
number++, // Increment for next time
cardnumber,
value);
此外,问题中的示例没有足够的参数。似乎没有必要将整数转换为CString
.只需使用%d
格式说明符即可。
TODO:您可能希望添加一些在启动时运行的代码,用于打开文件、读取最后一行并解析该行以获取最后一个写入日期。然后将lastWriteDay
初始化为该。当应用因某种原因在同一天退出并重新启动时,需要这样做。