我有一个 .txt 文件,其中充满了如下所示的行:
- 2011-03-03 03.33.13.222 4 2000 信息业务 ...等blabla
- 2011-03-03 03.33.13.333 4 2000 信息业务 ...等blabla
- 2011-03-03 03.33.13.444 4 2000 信息业务 ...等 blabla
在我的代码中的某些地方,我做了一些计算和搜索,我只提取每行开头的日期。现在,当我在文件开头正确定位时,我只提取日期和时间(以毫秒为单位)“例如:2011-03-03 03.33.13.444”并转换为 QDateTime 对象。
假设我的文件指针在某行的开头正确定位,使用 readLine 我读取我的日期时间文本行并转换为 QDateTime 对象
QDateTime dt;
char lineBuff[1024];
qint64 lineLength;
lineLength=file.readLine(lineBuff, 24);
dt = QDateTime::fromString(QString(lineBuff),"yyyy-MM-dd HH.mm.ss.zzz");
这是绝对正确的。
但是,问题来了:
当我这样做时:
QDateTime dt;
QByteArray baLine;
char lineBuff[1024];
file.seek(nGotoPos); //QFile, nGotoPos = a position in my file
QString strPrev(baLine); // convert bytearry to qstring -> so i can use mid()
// calculate where the last two newline characters are in that string
int nEndLine = strPrev.lastIndexOf("\n");
int nStartLine = strPrev.lastIndexOf("\n", -2);
QString strMyWholeLineOfTextAtSomePoint = strPrev.mid(nStartLine,nEndLine);
QString strMyDateTime = strMyWholeLineOfTextAtSomePoint.left(24);
// strMyDateTime in debug mode shows me that it is filled with my string
// "ex: 2011-03-03 03.33.13.444"
// THE PROBLEM
// But when i try to covert that string to my QDateTime object it is empty
dt = QDateTime::fromString(strMyDateTime ,"yyyy-MM-dd HH.mm.ss.zzz");
dt.isValid() //false
dt.toString () // "" -> empty ????
但如果我这样做:
dt = QDateTime::fromString("2011-03-03 03.33.13.444","yyyy-MM-dd HH.mm.ss.zzz"); 然后一切都好。
我的 QString 可能有什么问题?我需要在 strMyDateTime 上附加一个“\0”还是需要一些其他的转换?