08 2020 档案
摘要:linux - netcat网络工具-nc yum install -y nc [root@localhost ~]# nc www.baidu.com 80 GET / HTTP/1.0 nc -z -w -v -n -t 192.168.1.100 1-2000 -z 表示连接立即关闭,不进行数
阅读全文
摘要:版本升级下就可以了 使用2.2.6及以上版本可避免此问题 <!-- 阿里开源EXCEL --> <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.2.6</version
阅读全文
摘要:Mysql中的JSON系列操作函数 一、方法罗列: 分类 函数 描述 创建json json_array 创建json数组 json_object 创建json对象 json_quote 将json转成json字符串类型 查询json json_contains 判断是否包含某个json值 json
阅读全文
摘要:LocalDate必须有年,月,日三个内容 //LocalDate -> YearMonth -> String LocalDate localDate = LocalDate.now(); YearMonth yearMonth = YearMonth.of(localDate.getYear()
阅读全文