Here you can find the source of timeToJgo(long milliSeconds)
public static String timeToJgo(long milliSeconds)
//package com.java2s; //License from project: Open Source License public class Main { public static String timeToJgo(long milliSeconds) { return milliSeconds / 1000 + ""; }//w w w .j av a 2 s. c om }