码迷,mamicode.com
首页 >  
搜索关键字:qstring    ( 525个结果
Qt 字符串转md5
Qt 字符串转md5 #include <QCryptographicHash> QString strToMd5(QString str) { QByteArray qba = QCryptographicHash::hash(str.toLatin1(), QCryptographicHash: ...
分类:其他好文   时间:2021-07-02 16:21:17    阅读次数:0
Qt读写文件汉字出现乱码问题
头文件#include<QTextCodec>在函数中添加。 out.setCodec(QTextCodec::codecForName("UTF-8"));//设定编码问题。 QString k="学号 "; QString k1="姓名 "; QString k2="班级 "; QString ...
分类:其他好文   时间:2021-06-24 18:19:19    阅读次数:0
Qt图片采集软件
Qt图片采集软件 QDateTime current_File_time = QDateTime::currentDateTime(); QString currentTimeStr = current_File_time.toString("yyyyMMddhhmmsszzz"); QString ...
分类:其他好文   时间:2021-06-15 18:31:57    阅读次数:0
【QT】 常用字符串类型简介
常用字符串类型 类型 说明 QChar 1个UTF-16字符。 QString 由QChar组成的字符串。默认使用深拷贝。如果必须使用浅拷贝,可以通过fromRawData进行构建。 QByteArray 传统字符串,以\0结尾。不建议使用。当前只在保存raw数据,或者使用内存非常严格的情况下可以使 ...
分类:其他好文   时间:2021-06-10 18:37:49    阅读次数:0
qt 文本流&数据流
// 文本流 QFile file("aaa.txt"); file.open(QFileDevice::WriteOnly); QTextStream stream(&file); stream<<QString("hell oworld")<<123456; file.close(); // 读 ...
分类:其他好文   时间:2021-05-24 16:16:10    阅读次数:0
QString字符串中出现%1,%2时,输出的形式与setCursor,setAcceptedMouseButtons函数浅析
这里的Qstring字符串输出的内容,一开始没有看的懂,在经过补习计算机相关输出知识后,就一下子懂了,其实这个很简单,话不多说,上程序,还是上一个文章的程序。 ColorItem::ColorItem() : color(QRandomGenerator::global()->bounded(256 ...
分类:其他好文   时间:2021-05-24 14:28:22    阅读次数:0
bel和QPushButton插入图片自适应label大小等比缩放
方法一(只对QLabel有用)、 //label是QLabel的对象指针 ui->label->setScaledContents(true); 方法二(对两种都有用)、 QString imagepath = ":/images/btn.png"; QPixmap image0(imagepath ...
分类:其他好文   时间:2021-05-24 14:14:13    阅读次数:0
Qt简单的文件创建和读写
1 QFile fp; //要包含必要的头文件,这里省略 2 QDir(dir); 3 QString path("./"),filename("test.txt"); 4 QDebug qdebug(QtWarningMsg) ; 5 fp.setFileName(path+filename); ...
分类:其他好文   时间:2021-02-10 13:16:22    阅读次数:0
QSqlDatabase::addDatabase("QSQLITE","connnection_log");
addDatabase的函数原型如下: [static] QSqlDatabase QSqlDatabase::addDatabase( const QString &type, const QString &connectionName = QLatin1String( defaultConnec ...
分类:数据库   时间:2021-02-06 11:55:31    阅读次数:0
QUdpSocket+QWebEngineView打造简易聊天室
先看下效果图: 核心代码: 1 class msgWebObj:public QObject{ 2 Q_OBJECT 3 Q_PROPERTY(QString msgLHtmlTmpl MEMBER m_msgLeftTmpl NOTIFY signalMsgHtml)//动态属性,后面网络通道注册 ...
分类:Web程序   时间:2021-01-27 12:53:14    阅读次数:0
525条   1 2 3 4 ... 53 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!