Here you can find the source of formatTimeDiff(long finishTime, long startTime)
Parameter | Description |
---|---|
finishTime | finish time |
startTime | start time |
public static String formatTimeDiff(long finishTime, long startTime)
//package com.java2s; public class Main { /**/* w ww.j a v a 2 s.c om*/ * * Given a finish and start time in long milliseconds, returns a String in the format Xhrs, Ymins, Z sec, for the time difference * between two times. If finish time comes before start time then negative valeus of X, Y and Z wil return. * * @param finishTime * finish time * @param startTime * start time */ public static String formatTimeDiff(long finishTime, long startTime) { long timeDiff = finishTime - startTime; return formatTime(timeDiff); } /** * * Given the time in long milliseconds, returns a String in the format Xhrs, Ymins, Z sec. * * @param timeDiff * The time difference to format */ public static String formatTime(long timeDiff) { StringBuffer buf = new StringBuffer(); long hours = timeDiff / (60 * 60 * 1000); long rem = (timeDiff % (60 * 60 * 1000)); long minutes = rem / (60 * 1000); rem = rem % (60 * 1000); long seconds = rem / 1000; if (hours != 0) { buf.append(hours); buf.append("hrs, "); } if (minutes != 0) { buf.append(minutes); buf.append("mins, "); } // return "0sec if no difference buf.append(seconds); buf.append("sec"); return buf.toString(); } public static String toString(String[] content, String sign) { if (null == content) { return null; } sign = null == sign ? "," : sign; StringBuilder strBuilder = new StringBuilder(); for (int i = 0; i < content.length; i++) { strBuilder.append(content[i]); if (i < content.length - 1) { strBuilder.append(sign); } } return strBuilder.toString(); } }