2023年1月18日

excel

摘要: package com.enjoyit.pos.common.util; import com.enjoyit.pos.common.CommonLog; import org.apache.poi.ss.usermodel.BorderStyle; import org.apache.poi.ss 阅读全文

posted @ 2023-01-18 14:57 各执一词 阅读(95) 评论(0) 推荐(0) 编辑

2023年1月17日

java虚拟机日志跟踪相关设置

摘要: GC详细日志简要分析: 2023-01-17T14:16:23.810+0800: 10233.942: [GC (Allocation Failure) 2023-01-17T14:16:23.810+0800: 10233.942: [DefNew: 70396K->439K(78720K), 阅读全文

posted @ 2023-01-17 17:27 各执一词 阅读(73) 评论(0) 推荐(0) 编辑

2022年12月31日

visual studio code设置setting.json文件

摘要: # 原始设置{ "editor.unicodeHighlight.nonBasicASCII": false, "editor.unicodeHighlight.ambiguousCharacters": false, "workbench.preferredDarkColorTheme": "De 阅读全文

posted @ 2022-12-31 15:38 各执一词 阅读(340) 评论(0) 推荐(0) 编辑

2022年12月29日

win按照时间戳每秒执行ping,并追加输出记录文档

摘要: @echo off @echo. 请以管理员身份运行 @echo. 终止请按: Ctrl+C set /p host=host: set logfile=%~dp0%host%.txt echo Target Host=%host% >> %logfile% :flag for /f "tokens 阅读全文

posted @ 2022-12-29 17:16 各执一词 阅读(108) 评论(0) 推荐(0) 编辑

2022年1月21日

Base64加密解密注意事项

摘要: //无法解码包含换行的编码结果Base64.getDecoder().decode()Base64.getEncoder().encode() 和 Base64.getMimeDecoder().decode()Base64.getMimeEncoder().encode() JDK7的Base64 阅读全文

posted @ 2022-01-21 17:25 各执一词 阅读(912) 评论(0) 推荐(0) 编辑

2021年9月27日

nginx

摘要: 1、查询服务器上nginx:ps -ef|grep nginx ⁣2、查询服务器上nginx的nginx.conf文件地址:1命令执行完后/xxx/xxx/nginx -t ⁣3、切换到对应目录vi编辑nginx.conf文件 ⁣4、http{}中client_max_body_sizec参数设置为 阅读全文

posted @ 2021-09-27 16:59 各执一词 阅读(62) 评论(0) 推荐(0) 编辑

2021年9月15日

解除安卓手机密码忘了的问题

摘要: 下载adbwin+Radbadb shellrm password.keyreboot 阅读全文

posted @ 2021-09-15 12:55 各执一词 阅读(18) 评论(0) 推荐(0) 编辑

2021年7月14日

long的取值最大为19位数

摘要: 阅读全文

posted @ 2021-07-14 17:01 各执一词 阅读(313) 评论(0) 推荐(0) 编辑

2021年4月28日

tar打包

摘要: 选项 -A或--catenate:新增文件到以存在的备份文件; -B:设置区块大小; -c或--create:建立新的备份文件; -C < 目录>:这个选项用在解压缩,若要在特定目录解压缩,可以使用这个选项。 -d:记录文件的差别; -x或--extract或--get:从备份文件中还原文件; -t 阅读全文

posted @ 2021-04-28 11:39 各执一词 阅读(295) 评论(0) 推荐(0) 编辑

2021年4月25日

cron 表达式标准结构

摘要: cron 表达式标准结构 cron: * * * * * ? 分别代表:秒、分、时、日、月、星期 数字则表示具体时间, * 则表示任意时间, */x 则表示每多少时间 如: 0 0 1,2,3,23 * * ? 表示每天1:00、2:00、3:00、23:00执行一次 0 30 10,11 * * 阅读全文

posted @ 2021-04-25 16:53 各执一词 阅读(1055) 评论(0) 推荐(0) 编辑

导航