上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 76 下一页
摘要: import org.apache.commons.lang3.StringUtils; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Created by */ public class RegexUti 阅读全文
posted @ 2020-04-30 20:46 aspirant 阅读(454) 评论(0) 推荐(0) 编辑
摘要: 同事工作中遇到一个问题: select count(billingdate),to_char(billingdate,'YYYYmm') month from tu_trade where to_char(billingdate,'YYYY') ='2017'and reportstat = 30 阅读全文
posted @ 2020-04-03 14:14 aspirant 阅读(3943) 评论(0) 推荐(2) 编辑
摘要: 新买的IKBC过了一个暑假不好用了 方法:按住FN+DEL 5秒钟,看到键盘灯闪了3下,回复出厂设置,就可以了,如果还不会,直接咨询客服就行了 阅读全文
posted @ 2020-04-01 14:21 aspirant 阅读(4257) 评论(0) 推荐(0) 编辑
摘要: 参考:流程控制引擎组件化 阅读全文
posted @ 2020-03-31 22:29 aspirant 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 现象IDEA多个几个工程后,会出现运行迟缓的情况IDEA在打开大工程后(该工程下几十个子模块)电脑风扇狂响,import了好久但是一直都没有响应,结束不了;工程使用的JDK版本是1.8,但是maven编译却检查不出来: 分析该现象出现的问题是因为IDEA的运行堆栈太小,jvm不断的出现full gc 阅读全文
posted @ 2020-03-26 19:15 aspirant 阅读(2968) 评论(0) 推荐(0) 编辑
摘要: 本地 是好的,后来一查,竟然是本地没提交。。。 阅读全文
posted @ 2020-03-26 17:41 aspirant 阅读(166) 评论(1) 推荐(0) 编辑
摘要: #与0的区别: #:没有则为空 0:没有则补0 final DecimalFormat df = new DecimalFormat("0.##"); final String str1 = df.format(a); final DecimalFormat df = new DecimalForm 阅读全文
posted @ 2020-03-23 11:20 aspirant 阅读(4140) 评论(0) 推荐(0) 编辑
摘要: public static PromoteActivityExt getExtByActivityDO(ActivityDO activityDO){ if(null==activityDO){ return null; } PromoteActivityExt activityExt = JSON 阅读全文
posted @ 2020-03-18 11:40 aspirant 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 比如: //先把double==>string==>BigDecimal;直接 double==>BigDecimal 异常比如9.9BigDecimal decimalRate = new BigDecimal(String.valueOf(lowestDiscountRate)).setScal 阅读全文
posted @ 2020-03-12 11:32 aspirant 阅读(737) 评论(0) 推荐(0) 编辑
摘要: 1.List转JSONArray List<T> list = new ArrayList<T>(); JSONArray array= JSONArray.parseArray(JSON.toJSONString(list)); 2.JSONArray转List JSONArray array = 阅读全文
posted @ 2020-03-11 15:31 aspirant 阅读(3784) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 76 下一页