`
pange
  • 浏览: 6026 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
var a = [1,2,3]  var b = [7,8,9]    a = a.concat(b);  a = [1,2,3,7,8,9]
public class IPv4Util { /**      * 把IP地址转化为int      * @param ipAddr      * @return int      */         public static long ipToInt(String ipAddr) {         try {         String[] ipArr = ipAddr.split("\\.");         StringBuffer sb =new StringBuffer();             for(int i=0;i<ipAr ...
DecimalFormat df = new DecimalFormat("0");   String whatYourWant = df.format(cell.getNumericCellValue());
Global site tag (gtag.js) - Google Analytics