摘要:
import org.apache.commons.lang3.StringUtils; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Created by */ public class RegexUti 阅读全文
摘要:
同事工作中遇到一个问题: select count(billingdate),to_char(billingdate,'YYYYmm') month from tu_trade where to_char(billingdate,'YYYY') ='2017'and reportstat = 30 阅读全文
摘要:
新买的IKBC过了一个暑假不好用了 方法:按住FN+DEL 5秒钟,看到键盘灯闪了3下,回复出厂设置,就可以了,如果还不会,直接咨询客服就行了 阅读全文
摘要:
现象IDEA多个几个工程后,会出现运行迟缓的情况IDEA在打开大工程后(该工程下几十个子模块)电脑风扇狂响,import了好久但是一直都没有响应,结束不了;工程使用的JDK版本是1.8,但是maven编译却检查不出来: 分析该现象出现的问题是因为IDEA的运行堆栈太小,jvm不断的出现full gc 阅读全文
摘要:
本地 是好的,后来一查,竟然是本地没提交。。。 阅读全文
摘要:
#与0的区别: #:没有则为空 0:没有则补0 final DecimalFormat df = new DecimalFormat("0.##"); final String str1 = df.format(a); final DecimalFormat df = new DecimalForm 阅读全文
摘要:
public static PromoteActivityExt getExtByActivityDO(ActivityDO activityDO){ if(null==activityDO){ return null; } PromoteActivityExt activityExt = JSON 阅读全文
摘要:
比如: //先把double==>string==>BigDecimal;直接 double==>BigDecimal 异常比如9.9BigDecimal decimalRate = new BigDecimal(String.valueOf(lowestDiscountRate)).setScal 阅读全文
摘要:
1.List转JSONArray List<T> list = new ArrayList<T>(); JSONArray array= JSONArray.parseArray(JSON.toJSONString(list)); 2.JSONArray转List JSONArray array = 阅读全文