Here you can find the source of convertTimeToSeconds(String a_time)
public static int convertTimeToSeconds(String a_time)
//package com.java2s; //License from project: Apache License public class Main { public static int convertTimeToSeconds(String a_time) { int secSinceMidnight = 0; int hours, minutes, seconds; String[] splitTime = a_time.split(":"); hours = Integer.parseInt(splitTime[0]); minutes = Integer.parseInt(splitTime[1]); seconds = Integer.parseInt(splitTime[2]); secSinceMidnight = (3600 * hours) + (60 * minutes) + seconds; return secSinceMidnight; }/*from www. j a v a2s. c o m*/ }