Exemple #1
0
 public static void print(Object... args) {
   StringBuilder sb = new StringBuilder(TimeTool.getCurrentTime() + "  ");
   for (Object arg : args) {
     sb.append(arg + " ");
   }
   System.out.println(sb.toString());
 }