06 2017 档案

摘要:异常信息主要有两个,Falling off the end of the code 和 illegal instruction found at offset 1: 经反复查找资料发现最终是asm jar包冲突导致的。直接通过maven进行依赖分析: 在控制台会输出一堆依赖信息,ctrl + f 查 阅读全文
posted @ 2017-06-22 17:51 岁月千年 阅读(2156) 评论(0) 推荐(0)
摘要:$& -- 表示全部匹配组匹配的结果,最后再啰嗦一次,匹配组就是正则表达式的()分组 $$ -- 表示$字符,因为匹配变量用掉了$字符,所以需要转义 $n -- 类似前面的$1…$9,表示第n组匹配的结果 $nn -- 很简单就是第nn组匹配的结果 $` -- 就是前面提到过的leftContext 阅读全文
posted @ 2017-06-16 14:12 岁月千年 阅读(2918) 评论(0) 推荐(0)
摘要:public class DataUtil { public static void main(String[] args) { int a = 8; int value = charToInt(byteToChar(intToByte(a))); int value2 = byteToInt(charToByte(intTochar(a... 阅读全文
posted @ 2017-06-08 09:06 岁月千年 阅读(1389) 评论(0) 推荐(0)