Here you can find the source of getSecond(String date)
public static double getSecond(String date)
//package com.java2s; /*/* w ww .j av a 2 s . co m*/ * License information at https://github.com/Caltech-IPAC/firefly/blob/master/License.txt */ public class Main { /** * Get second * @return second */ public static double getSecond(String date) { return Double.parseDouble(date.substring(15)); } }