Java Second Format getSeconds(long time)

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

Description

get Seconds

License

Open Source License

Declaration

public static int getSeconds(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 SECOND_FORMATTER = new SimpleDateFormat("ss");

    public static int getSeconds(long time) {
        return Integer.valueOf(SECOND_FORMATTER.format(new Date(time)));
    }/*ww w  .  jav a 2 s  . co  m*/
}

Related

  1. getSecond()
  2. getSecond()
  3. getSecond()
  4. getSecond(Date date)
  5. getSecond(String time)
  6. getSecondsFormatter()
  7. getSecondsSince(String rfc1123Date)
  8. getStringFromNanoSeconds(final long nanoSeconds, final long format)
  9. getThisSecondTime()