1 2 3 4 5 ··· 18 下一页
摘要: "D:\Program Files\Git\bin\bash.exe" -c "ls" 阅读全文
posted @ 2025-09-23 09:18 liliyou 阅读(10) 评论(0) 推荐(0)
摘要: vcpkg install nlohmann-json 阅读全文
posted @ 2025-09-20 09:36 liliyou 阅读(7) 评论(0) 推荐(0)
摘要: Qt5.6.3 是最后支持xp系统的长期支持版本。 阅读全文
posted @ 2025-07-11 16:34 liliyou 阅读(31) 评论(0) 推荐(0)
摘要: Thread thread = new Thread(new ThreadStart(() => { Console.WriteLine("可用串口列表:"); string[] ports = SerialPort.GetPortNames(); foreach (string port in p 阅读全文
posted @ 2025-07-11 08:57 liliyou 阅读(91) 评论(0) 推荐(0)
摘要: sqlite3 wms.sqlite < sql.sql 阅读全文
posted @ 2025-07-08 08:28 liliyou 阅读(21) 评论(0) 推荐(0)
摘要: 删除文件 del 1.txt 删除某个后缀的所有文件 有时候需要批量删除一些文件名比较有规律的文件,可以用通配符*代替不规则的字符,保留规则的字符;例如 ,想删除当前目录下所有后缀为.txt .png .jpg的文件,可以使用: del *.txt *.png *.jpg 删除文件夹 >rmdir 阅读全文
posted @ 2025-06-06 14:44 liliyou 阅读(29) 评论(0) 推荐(0)
摘要: // 假设ui是您的用户界面对象 ui->textBrowser->document()->setMaximumBlockCount(10); ui->textBrowser->append("[接收] " + message.trimmed()); 清空文本 ui->textBrowser->cl 阅读全文
posted @ 2025-06-05 17:20 liliyou 阅读(32) 评论(0) 推荐(0)
摘要: // 设置lcdNumber的值 ui->lcdNumber->display(111.254); // 获取lcdNumber的值 qDebug()<< QStringLiteral("显示的数字是:") << ui->lcdNumber->value(); 阅读全文
posted @ 2025-06-05 17:00 liliyou 阅读(27) 评论(0) 推荐(0)
摘要: QString filename = QFileDialog::getOpenFileName(this,"打开文件","E:/","(*.rar)"); ui->lineEdit->setText(filename); 阅读全文
posted @ 2025-06-05 09:25 liliyou 阅读(8) 评论(0) 推荐(0)
摘要: SerialPortHandler.h #ifndef SERIALPORTHANDLER_H #define SERIALPORTHANDLER_H #include <QObject> #include <QSerialPort> #include <QSerialPortInfo> class 阅读全文
posted @ 2025-06-04 16:53 liliyou 阅读(35) 评论(0) 推荐(0)
1 2 3 4 5 ··· 18 下一页