config.ini [phone] imei = 123456789 num = 0 / 14 build = 00WWYL test.py CUR_DIR = os.path.dirname(os.path.abspath(__file__)) configFilePath = os.path. ...
分类:
编程语言 时间:
2021-05-24 09:30:30
阅读次数:
0
1、解析 QFile file(ui->comboBox->currentText()); //打开文件 bool isOK = file.open(QIODevice::ReadOnly | QIODevice::Text); if(isOK){ QXmlStreamReader reader(& ...
分类:
其他好文 时间:
2021-05-24 09:30:13
阅读次数:
0
# -*- coding: utf-8 -*-import os#设定文件路径path=r'D:\郭鹏历届真题解析2007-2020'i=1#对目录下的文件进行遍历for file in os.listdir(path):#判断是否是文件 file_name=os.path.join(path,fi ...
分类:
编程语言 时间:
2021-05-24 09:25:18
阅读次数:
0
添加启动的账户名 sudo vi /etc/systemd/system/getty.target.wants/getty@tty1.service 如图中的 ExecStart=-/sbin/agetty -o '-p -- \\u' --noclear %I $TERM 中添加自启动root用户 ...
分类:
系统相关 时间:
2021-05-24 09:22:34
阅读次数:
0
查看是否启动 ps -e | grep sshd 未启动则启动服务 /etc/init.d/ssh start 附:#重启SSH服务 /etc/init.d/ssh restart #关闭SSH服务 /etc/init.d/ssh stop 未安装则安装服务 apt-get update apt-g ...
分类:
系统相关 时间:
2021-05-24 09:07:51
阅读次数:
0
对近期的数据库配置进行一个记录,方便我以后查阅。 我的Django项目配备的是Mysql的数据库,平时使用的工具是VS Code,推荐安装Mysql插件,效果不错: 下面是在项目的setting.py中配置的Mysql连接数据: DATABASES = { 'default': { 'ENGINE' ...
分类:
数据库 时间:
2021-05-24 09:06:47
阅读次数:
0
select concat('drop table ',table_name,';') from information_schema.tables where table_schema='employees' and table_name rlike '^d.*$' into outfile 'd ...
分类:
数据库 时间:
2021-05-24 08:59:21
阅读次数:
0
文章目录1 在开发板上移植ssh2 安装ssh3 生成KEY文件,并安装4 修改目标板密钥文件5 测试6 在Ubuntu上搭建QT开发环境7 配置编译套件之前我们写好一个程序,都是先交叉编译完,然后在通过nfs/tftp或者其他的方法拷贝到开发板,然后在手动执行,如果我们调试程序很频繁,那我们每次都 ...
分类:
其他好文 时间:
2021-05-24 08:56:10
阅读次数:
0
1.C标准的文件读写 可移植性强(跨平台) 1 FILE* pFile = nullptr; 2 const char* pcFilePath = ".//1.text"; 3 4 //文件写 5 errno_t err = fopen_s(&pFile, pcFilePath, "ab"); 6 ...
在做h5上传照片功能时,对照片格式做了以下限制 <input type="file" accept="image/png,image/jpg,image/jpeg" > 但在微信浏览器中,这种写法会无法调用相机,从而直接进入图库 accept="image/*就是正常的 可以把accept="ima ...
分类:
其他好文 时间:
2021-05-24 07:03:49
阅读次数:
0