Java Second Format getFormatMSecond(long long_)

Here you can find the source of getFormatMSecond(long long_)

Description

get Format M Second

License

Open Source License

Declaration

public static String getFormatMSecond(long long_) 

Method Source Code

//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*/
}

Related

  1. formatTimeSecondsSinceEpoch(final long time, StringBuilder sbuffer)
  2. formatTimeSpanSeconds(long span)
  3. formatTimeWithOutSeconds(java.util.Date d)
  4. getDHMS(long totalSecond)
  5. getElapsedSeconds(long startTime)
  6. getFormattedDuration(int simTimeSeconds)
  7. getFullDateByMisSecond(long misSecond)
  8. getFutureDate(int seconds)
  9. getIntervalMilSeconds(String startDateStr, String endDateStr, String dateFormat)