Java Minute Get getMinutesString(long time)

Here you can find the source of getMinutesString(long time)

Description

get Minutes String

License

Apache License

Declaration

public static String getMinutesString(long time) 

Method Source Code

//package com.java2s;
/*//w  w w.  jav  a 2  s .c  o m
 Copyright 2014 Reo_SP
    
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
    
http://www.apache.org/licenses/LICENSE-2.0
    
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
*/

public class Main {
    public static String getMinutesString(long time) {
        String string = "" + (60 * (time % 1000) / 1000);
        if (string.length() < 2) {
            string = "0" + string;
        }
        return string;
    }
}

Related

  1. getMinutesInSecWOHours(long sec)
  2. getMinutesOfTowDiffDate(String p_startDate, String p_endDate)
  3. getMinutesRapp(long microseconds)
  4. getMinutesSeconds(long millisec, String fmt)
  5. getMinutesSinceEpoch()
  6. getMinuteStart(long ts)
  7. getMinutesText(long minutes)
  8. getMinutesTime(long msTime)
  9. getNextMinute(Integer minute)