Here you can find the source of formatTimeDuringHour(long mss)
public static String formatTimeDuringHour(long mss)
//package com.java2s; //License from project: Apache License public class Main { public static String formatTimeDuringHour(long mss) { long days = mss / 3600000L; return days + ""; }/* ww w. ja v a 2 s. com*/ }