gpt4 book ai didi

c++ - QDateTime::fromString 不接受我的 QString?

转载 作者:行者123 更新时间:2023-11-27 23:28:30 31 4
gpt4 key购买 nike

我有一个 .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

在我的代码中的某些地方,我进行了一些计算和查找,我只从每一行的开头提取日期。现在,当我正确定位在文件的开头时,我只提取日期和时间(带毫秒)“ex: 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”还是需要一些其他转换??

最佳答案

您的字符串有多余的字符,很可能开头有空格。您的格式字符串是 23 个字符,并且您使用的是 left(24),因此必须有一个额外的字符。您在对 Stephen Chu 的回答的评论中说,将 24 更改为 23 会删除最后一个毫秒字符,因此额外的字符必须在开头。

关于c++ - QDateTime::fromString 不接受我的 QString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7616263/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com