报错如下: Cannot set LC_ALL to locale en_US.UTF-8: No such file or directory 解决方式: apt-get install -y locales locale-gen en_US.UTF-8 ...
分类:
其他好文 时间:
2021-06-24 18:14:03
阅读次数:
0
""" 1.1交换 已知 a的值为”hello”,b的值为”world”,如何交换a和b的值? 得到a的值为”world”,b的值为”hello” """ a = "hello" b = "world" a,b = b,a print(a) print(b) """ 1.2回文 回文的定义:”回文” ...
分类:
编程语言 时间:
2021-06-24 18:06:51
阅读次数:
0
#!/usr/bin/pythonimport csv NewSN = "" # find good SN 给出MAC,寻找对应的SNwith open("DIGI_MAC_28_5_2021_40units.csv", newline='') as csvfile: csv_reader = cs ...
分类:
其他好文 时间:
2021-06-24 18:03:24
阅读次数:
0
JdbcTemplate1、JdbcTemplate概念及使用? a)Spring 框架对 JDBC 进行封装,使用 JdbcTemplate 方便实现对数据库操作 ? b)引入相关 jar 包 ? c)在 spring 配置文件配置数据库连接池 <bean id="dataSource" clas ...
分类:
数据库 时间:
2021-06-23 17:02:06
阅读次数:
0
2021-04-2711:01:23.286 ERROR 12572 [nio-8077-exec-5] o.s.b.w.servlet.support.ErrorPageFilter: Cannot forward to error page for request [/check/checkev ...
分类:
其他好文 时间:
2021-06-23 16:47:55
阅读次数:
0
/* */为了方便调试Qt程序,也方便传输文件,需要用sftp功能,开发板的dropbear没有此功能所以需要自己编译sftp-server程序,复制到开发板中运行。 sftp-server是openssh的一部分,所以要编译openssh。openssh依赖zlib和OpenSSL,所以也要编译z ...
分类:
其他好文 时间:
2021-06-19 19:29:49
阅读次数:
0
看着是readyonly,尝试js移除readonly属性,然后直接send_keys # 输入元素 下拉框方法封装 #直接sendkeys不行,不会往下走def base_send_keys(self, loc, value): # 先找到元素 el = self.base_find(loc) s ...
分类:
Web程序 时间:
2021-06-19 19:09:02
阅读次数:
0
Mac使用npm更新包出现问题,使用n切换到不同版本时出错信息还不相同 npm ERR! Cannot read property 'resolve' of undefined npm ERR! asyncWrite is not a function 怀疑是使用brew更新所有软件时顺带更新了no ...
分类:
系统相关 时间:
2021-06-19 18:42:10
阅读次数:
0
要使用此导出命令需要有相关的权限: 该变量用于限制数据导入导出操作的效果,例如LOAD DATAand SELECT ... INTO OUTFILE语句和 LOAD_FILE()函数执行的操作 。这些操作只允许有FILE权限的用户使用 。 secure_file_priv 可以设置如下: 1.如果 ...
分类:
数据库 时间:
2021-06-18 18:51:04
阅读次数:
0
grub 尝试了好多种方法,引导修复grub2的win7引导文件,始终无法进入之前的win7系统,选择win7之后却进入引导安装Ubuntu的命令页面,进入grub命令,输入以下命令,成功。 find --set-root /bootmgr(回车) chainloader /bootmgr(回车) ...