public static void main(String[] args) throws Exception { String name = "null"; System.out.println("2--->" + StringUtil.rep(name, "")); // String text= "據記載" ; // System.out.println( Jsoup.parse(html)) ; // System.out.println( Jsoup.parse(text).text()) ; // System.out.println(StringUtil.replaceString("💥")); // String // para="para=|userIds=1652752642,1770318172|indexType=NUM_OF_TWEETS|freq=week|dateId=2010-11-30"; // System.out.print // System.out.println(getPara(para,"userIds")); // Date myDate = StringUtil.getDate(1297673149); // System.out.println(StringUtil.getSearchKey("中国|人", "")) ; // SimpleDateFormat fm2 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); // System.out.println(myDate.toLocaleString()); // System.out.println(myDate.toLocaleString()); // System.out.println(fm2.format(myDate)); // SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // sd.setTimeZone(TimeZone.getTimeZone("GMT+8")); // String strDate = sd.format(new Date(1297673149*1000L)); // System.out.println("正八区当前时间:"+strDate); // System.out.println(""+new java.text.SimpleDateFormat("yyyy MM-dd HH:mm:ss").format(new // java.util.Date // (1297673149*1000L))); // String timezone_info = System.getProperty("user.timezone"); // System.out.println("当前的时区:"+timezone_info); // System.out.println("时区信息:"+TimeZone.getDefault()); // String smallStr = "3,5,7"; // String bigStr = "1,2,3,4,5,6,7"; // String otherStr = StringUtil.findOtherList(smallStr, bigStr); // System.out.print(otherStr); // String str = "中国"; // str = new String(str.getBytes("utf-8"),"ISO-8859-1"); // System.out.println(str); // String str1 =URLEncoder.encode(str,"utf-8"); // System.out.println(str1); // String sign = "clientid=10283&keywords=china&media=1&key=12345678"; // // 331caff5b9bf29f54debebc8d659c198 // 331caff5b9bf29f54debebc8d659c198 // System.out.println(StringUtil.MD5(sign)); // int num = 1413; // int length = 11; // String str = StringUtil.makeIntToString(num, length); // System.out.println(str); // num = 1313144143; // length = 9; // str = StringUtil.makeIntToString(num, length); // System.out.println(str); // String str = "/(00)\\"; // System.out.println(StringUtil.getValidContent(str)); // str = str.replace("\\", ""); // String str = "♪秦小岚😘๓小米『米娅美妆』适合初学者的完美的翅膀眼线教程||『米娅美妆』适合初学者的完美的翅膀眼线教程" ; // System.out.println(StringFilter(str)); // String docId = "2014102800000004493"; // int folderId = 1413; // String hId = StringUtil.genernateHID(docId, folderId); // System.out.println(hId); }
public static String formatNum(Object obj) { DecimalFormat df = new DecimalFormat("###,###,###.##"); return df.format(Double.valueOf(StringUtil.rep(obj, "0"))); }