Connection conn = DriverManager.getConnection(dbURL, properties); if (conn != null) { Statement statement = conn.createStatement(); ResultSet resultSe ...
分类:
数据库 时间:
2021-05-24 10:40:20
阅读次数:
0
https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm yum install postgresql13-contrib postgresql13-se ...
分类:
数据库 时间:
2021-05-24 10:29:11
阅读次数:
0
== MalformedByteSequenceException: 1字节的 UTF-8 序列的字节 1 无效 记住,每次修改了配置之后都 clean 一下,把 target 删除 == 去掉 pom.xml 中的 properties <properties> <maven.compiler.s ...
分类:
数据库 时间:
2021-05-24 10:16:57
阅读次数:
0
1、指定包 adb logcat | findstr <packagename> >F:\test.log 2、指定时间 adb logcat -v threadtime -t '08-08 08:08:08.000' >F:\test.log 3、打印到cmd adb logcat 4、打印 信息 ...
分类:
移动开发 时间:
2021-05-24 10:00:37
阅读次数:
0
cmd打开方式 方式 操作 一 win+r,输入cmd,回车 二 开始-Windows 系统-命令提示符 三 文件资源管理器-地址栏输入cmd+空格-回车 四 随便一个文件-按住shift-右击菜单-在此处打开Powershell窗口 简单来说Powershell就是CMD的强化版 文件和文件夹操作 ...
1 HTTP1.0和HTTP1.1的区别1.1 长连接(Persistent Connection) HTTP1.1支持长连接和请求的流水线处理,在一个TCP连接上可以传送多个HTTP请求和响应,减少了建立和关闭连接的消耗和延迟,在HTTP1.1中默认开启长连接keep-alive,一定程度上弥补了 ...
分类:
Web程序 时间:
2021-05-24 08:21:33
阅读次数:
0
键盘按键事件。 1.KeyDown。刚刚按下去的事件。 2. KeyUp :释放 键盘时的事件。 ...
先用ifconfig br_name down 停掉网桥 再用brctl delbr br_name 删除网桥 为了方便,我编写了shell脚本来删除网桥 #!/bin/bash #本脚本删除的是br-开头的网桥 BRIDGE_LIST=$(sudo brctl show | cut -f 1 | ...
分类:
其他好文 时间:
2021-05-24 06:19:17
阅读次数:
0
##C程序设计实验报告 **实验项目:**5.3.1习1 5.3.1习2 5.3.2习1 5.3.2习2 5.3.3 5.3.4 5.3.5习1 5.3.5习2 5.3.5习3 九九乘法表 **姓名:**谢梅芳 **实验地点:**1教524 **实验时间:**2021.5.6 一、实验目的与要求 ( ...
分类:
其他好文 时间:
2021-05-24 05:39:37
阅读次数:
0
模拟点击事件 function triggerclick(ele){ if(ele instanceof $){ ele = ele[0] } var clickEvent = document.createEvent("MouseEvents"); clickEvent.initEvent("cl ...
分类:
其他好文 时间:
2021-05-24 05:33:57
阅读次数:
0