到目前为止,即时通讯使用:
QTime time = QTime::currentTime();
QString formattedTime = time.toString("hh:mm:ss");
QByteArray formattedTimeMsg = formattedTime.toLocal8Bit();
如何更改日期和时间为“DD.MM.YYYY hh:mm:ss”?
最佳答案
QDateTime date = QDateTime::currentDateTime();
QString formattedTime = date.toString("dd.MM.yyyy hh:mm:ss");
QByteArray formattedTimeMsg = formattedTime.toLocal8Bit();
qDebug() << "Date:"+formattedTime;
您可以在这里找到更多详细信息https://doc.qt.io/qt-5/qdatetime.html
关于c++ - QString中的当前日期时间?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58250095/