Here you can find the source of millis2seconds(long millis)
private static long millis2seconds(long millis)
//package com.java2s; /******************************************************************************* * Copyright (c) 2012 Pivotal Software, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-v10.html * * Contributors:/*from w w w .j a va2s . c o m*/ * Pivotal Software, Inc. - initial API and implementation *******************************************************************************/ public class Main { private static long millis2seconds(long millis) { return millis / 1000; } }