上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 50 下一页
  2022年10月8日
摘要: ThreadLocal本地局部线程demo import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.HashMap; import java.util.Map; /** * 本工具只能保存一个线程内的变量 * 阅读全文
posted @ 2022-10-08 18:08 oktokeep 阅读(103) 评论(0) 推荐(0) 编辑
摘要: Thread的join方法demo /** * 关于join官方的解释是 Waits for this thread to die. 也就是等待一个线程结束。 */ public class ThreadJoinTest { public static void main(String[] args 阅读全文
posted @ 2022-10-08 18:07 oktokeep 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Illegal character ((CTRL-CHAR, code 31))问题排查 gzip接口返回 #接口返回gzip方式 private static final String ENCODING_UTF8 = "UTF-8"; private static ObjectMapper map 阅读全文
posted @ 2022-10-08 17:16 oktokeep 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 警告: BASE64Decoder是内部专用 API, 可能会在未来发行版中删除 import org.apache.commons.codec.binary.Base64; public class Base64Encoder { /** * @param bytes * @return */ p 阅读全文
posted @ 2022-10-08 17:12 oktokeep 阅读(1777) 评论(0) 推荐(0) 编辑
摘要: IDEA 报错:无效的源发行版 sourceCompatibility 检查配置文件中的jdk版本的配置,//错误:sourceCompatibility = '18'//修改成正确的如下:sourceCompatibility = '1.8' 阅读全文
posted @ 2022-10-08 17:11 oktokeep 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 接口签名规则及Java代码demo实现 签名规则 签名生成的通用步骤如下: 第一步,设所有发送或者接收到的数据为集合M,将集合M内非空参数值的参数按照参数名ASCII码从小到大排序(字典序),使用URL键值对的格式(即key1=value1&key2=value2…)拼接成字符串stringA。 特 阅读全文
posted @ 2022-10-08 17:08 oktokeep 阅读(1021) 评论(1) 推荐(0) 编辑
摘要: AES对称加密算法 import org.apache.tomcat.util.codec.binary.Base64; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.util. 阅读全文
posted @ 2022-10-08 17:05 oktokeep 阅读(163) 评论(0) 推荐(0) 编辑
摘要: String忽略大小写方法compareToIgnoreCase源码及Comparator自定义比较器 //源码 public int compareToIgnoreCase(String str) { return CASE_INSENSITIVE_ORDER.compare(this, str) 阅读全文
posted @ 2022-10-08 15:33 oktokeep 阅读(206) 评论(1) 推荐(0) 编辑
摘要: Json字符串转换处理html编码格式,= \u003d 处理 import com.alibaba.fastjson.annotation.JSONField; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.f 阅读全文
posted @ 2022-10-08 15:23 oktokeep 阅读(1951) 评论(0) 推荐(0) 编辑
  2022年9月26日
摘要: Curl请求示例curl -X GET "http://<host:port>/api/1/test/get?test=<value>&app_id=<app_id>&sign=<sign>&timestamp=<timestamp>"curl -X POST -H "Content-Type: a 阅读全文
posted @ 2022-09-26 22:55 oktokeep 阅读(2795) 评论(3) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 50 下一页