摘要:
1:配置 history 命令查询历史操作命令记录时显示操作时间 1):编辑文件: /etc/profile 2):在文件末尾添加以下行并保存: export HISTTIMEFORMAT="%F %T " 3):重新加载配置:source /etc/profile 阅读全文
摘要:
sh脚本(直接重启,推荐): #!/bin/bash # 配置部分 JAR_PATH="/xxx/xxxxx/xxxxxx/xxxxx.jar" # JAR文件路径 LOG_PATH="/xxx/xxxx/xxxxx/xxxxx.log" # 日志文件路径 # 获取正在运行的进程的PID PID=$ 阅读全文
摘要:
1 备份整个数据库:mysqldump -u [username] -p [database_name] > [backup_file.sql] [username]: 数据库用户名 [database_name]: 要备份的数据库名称 [backup_file.sql]: 备份后的 SQL 文件名 阅读全文
摘要:
SELECT (@row_number := @row_number + 1) AS id from lable tt, (SELECT @row_number := 0) AS t lable : 数据表 (SELECT @row_number := 0) AS t : 将 @row_number 阅读全文
摘要:
JSch Maven地址 <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.55</version> </dependency> java代码实现 import com.jcra 阅读全文
摘要:
public static void main(String[] args) { HashMap<String,String> m = new HashMap<>(); HashMap<String,String> mm = new HashMap<>(); HashMap<String,Strin 阅读全文
摘要:
String str= "我very喜欢China"; String reg = "[\u4e00-\u9fa5]"; Pattern pat = Pattern.compile(reg); Matcher mat = pat.matcher(str); str = mat.replaceAll(" 阅读全文
摘要:
maven添加本地jar包 1.win+r 打开命令行窗口 2. 输入命令 mvn install:install-file "-Dfile=C:\XXX\XX\xxxx.jar" "-DgroupId=gbase" "-DartifactId=connector-java" "-Dversion= 阅读全文
摘要:
downloadPicture(imgSrc, name) { const image = new Image() // 解决跨域Canvas 污染问题 image.setAttribute('crossOrigin', 'anonymous') image.src = imgSrc image.o 阅读全文
摘要:
public static void main(String[] args) { /* // 网络图片地址 以下所使用的ImgUtil 是 Hutool 工具 String reportTemplateUrlStr = "https://xxxxxxxxxxxxxx.com/xxxxxxxxxxxx 阅读全文