Java Minute Get getMinutes(long time)

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

Description

get Minutes

License

Open Source License

Declaration

public static int getMinutes(long time) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010 Robert "Unlogic" Olofsson (unlogic@unlogic.se).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v3
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl-3.0-standalone.html
 ******************************************************************************/

import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    public static SimpleDateFormat MINUTE_FORMATTER = new SimpleDateFormat("mm");

    public static int getMinutes(long time) {
        return Integer.valueOf(MINUTE_FORMATTER.format(new Date(time)));
    }//from  w  w  w.j  a  v a  2  s .  c  o m
}

Related

  1. getMinutes(Date date)
  2. getMinutes(double seconds)
  3. getMinutes(double t)
  4. getMinutes(final double DEC_DEG)
  5. getMinutes(int minutes)
  6. getMinutes(String hora)
  7. getMinutes(String time)
  8. getMinutes(String time, int defaultValue)
  9. getMinutesDiff(long from, long to)