Here you can find the source of csvAnnotatedMilliString(long totaltime)
public static String csvAnnotatedMilliString(long totaltime)
//package com.java2s; //License from project: Open Source License public class Main { public static String csvAnnotatedMilliString(long totaltime) { return "" + totaltime + " ms, " + totaltime / 1000 + " sec, " + totaltime / (60 * 1000) + " min, " + totaltime / (60 * 60 * 1000) + " hrs"; }//from w w w . j av a 2 s.c om }