Here you can find the source of getSecondInt(long time)
public static int getSecondInt(long time)
//package com.java2s; public class Main { public static int getSecondInt(long time) { if (time > (60)) { return (int) ((time % (60))); } else {/*from w ww. j a v a2 s . com*/ return (int) (time); } } }