Here you can find the source of getFormatMSecond(long long_)
public static String getFormatMSecond(long long_)
//package com.java2s; public class Main { public static String getFormatMSecond(long long_) { String strdate = "0"; if (long_ > 0) { strdate = long_ + ""; } // end if return strdate; }/* w w w . j av a 2 s.co m*/ }