-
JDK1.8 字符串以逗號(hào)分割組合在一起
如把 Tom Jock Lucy 組合到一起,以逗號(hào)隔開
String result = String.join(", " , "Tom" , "Jock" , "Locy" );
result結(jié)果為 "Tom, Jock, Locy "
-
進(jìn)制轉(zhuǎn)換
//表示把字符串11當(dāng)做二進(jìn)制列赎,轉(zhuǎn)換為Integer
System.out.println(Integer.parseInt("11",2));//從其他進(jìn)制轉(zhuǎn)換類似
//把Integer型數(shù)據(jù)11包吝,轉(zhuǎn)換成16進(jìn)制
System.out.println(Integer.toHexString(11));
System.out.println(Integer.toString(11,16)); //轉(zhuǎn)換成其他進(jìn)制類似
-
集合非空判斷
//new ArrayList() 或者 null 的時(shí)候都是false
CollectionUtils.isNotEmpty(list)
-
時(shí)間戳轉(zhuǎn)換為特定格式的時(shí)間
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH-mm-ss");
System.out.println(sdf.format(1470046442050L));