windows
LHshooter
https://www.androidos.net.cn/sourcecode
展开
-
QT -- QFtpPI_socket device not open
问题write (QTcpSocket, "QFtpPI_socket"): device not open后分析到的原因由于 QFile 操作完后没有close导致,当遇到重复打开文件就会出现这个问题 QFile file(filename); if (!file.open(QIODevice::ReadOnly)) { ... } file.close();...原创 2020-12-18 09:46:31 · 2371 阅读 · 0 评论 -
windows bat命令判断是否包含某字符
判断 BRANCH_NAME 是否包含 hongecho %BRANCH_NAME%| findstr "hong" >nul && ( echo %BRANCH_NAME% has %b%) || ( echo %a% not %b%)if "%OTA_BUILD_ENABLE%"=="1" (echo "hello")原创 2020-12-08 11:03:17 · 8561 阅读 · 0 评论 -
指定python版本运行
指定python版本运行py -2py -3原创 2020-12-07 12:01:48 · 706 阅读 · 0 评论 -
windows -- openssl sha256加密和AES加密
SHA256加密#include "openssl/sha.h"std::string sha256(const std::string str){ char buf[2]; unsigned char hash[SHA256_DIGEST_LENGTH]; SHA256_CTX sha256; SHA256_Init(&sha256); SHA256_Update(&sha256, str.c_str(), str.size());原创 2020-12-02 09:13:19 · 927 阅读 · 0 评论 -
windows c/c++遍历文件夹下所有文件
[ 开始一直不能遍历文件 ][ 发现是变量定义的问题,特此记录下 ]原因: 开始把 handle 定义为了 long 类型,改为 intptr_t 类型就好了实现#include <io.h>intptr_t handle;handle = _findfirst(current_path.c_str(), &fileinfo);if (handle == -1) { printf("path %s is exist\n", filePath.c_str().原创 2020-12-02 09:07:22 · 349 阅读 · 0 评论 -
7牛-qshel的一些使用
qshel 上传命令qshell qupload2 --src-dir=$fileDir --file-list=$filelist --bucket=smartwatch --ignore-dir=true --overwrite=true --rescan-local=true --log-file=upload.log --log-rotate=特别注意: qshell是指定文件夹,那么一定要记得带 --rescan-local=true 重新扫描本地新文件(如果不带,新文件会传不上去)qs原创 2020-10-20 08:47:46 · 428 阅读 · 2 评论 -
qt 子线程更新UI
qt 子线程更新UI – 回调函数更新ui通过信号和槽实现子线程更新ui头文件中信号和槽函数的声明;信号和槽的绑定 connect(this, SIGNAL(sigProcess(QString)), this, SLOT(showProcess(QString)));在槽SLOT中实现更新ui,showProcess(QString);在回调函数中实现信号的发送 emit sigProcess(explain);这样我们通过 回调函数 就可以更新uimainwindow.hclass原创 2020-09-18 10:41:10 · 2968 阅读 · 0 评论 -
关于jenkins构建的一些记录
jenkins的下载和安装可以参考官网这里主要记载一下一些jenkins的基本要素jenkins安装后,会默认把本机电脑作为一个节点。(那么别的电脑怎么登录到此jenkins)jenkins可以添加其他的电脑(windows和linux)作为节点。(那么windows和linux节点分别怎么添加)jenkins局域网登录首先要将localhost配置为带ip地址的(http://localhost:8080/ --> http://xxx.xx.xxx.xx:8080/)在其他电原创 2020-07-27 14:38:33 · 221 阅读 · 0 评论 -
Visual Studio Code VSCODE 修改字体
File --> Preferences --> Settings–> Text Editor --> Font 配置为 Consolas, 'Courier New', monospace原创 2020-07-17 17:24:45 · 1157 阅读 · 0 评论 -
windows字符替换
/ 替换为 -将DATE_VAR中的 / 替换为 -%DATE_VAR:/=-%原创 2020-07-11 11:57:37 · 739 阅读 · 1 评论 -
windows bat命令按行读取文本并赋值给变量
tokens=3 代表第三列skip=1 代表越过第一行version.mkMACHINE_TYPE = 12VERSION_NUMBER = 1.1.1MODEL_NAME = KK如下代码的效果就是把第一行 MACHINE_TYPE = 12 中的 12 取出来如下代码的效果就是把第二行 VERSION_NUMBER = 1.1.1 中的 1.1.1 取出来如下代码的效果就是把第三行 MODEL_NAME = KK 中的 KK 取出来set MACHINE_TYPE=""原创 2020-07-11 09:33:15 · 7151 阅读 · 0 评论