Here you can find the source of strTimeToSeconds(String hmsTimes)
public static int strTimeToSeconds(String hmsTimes)
//package com.java2s; public class Main { public static int strTimeToSeconds(String hmsTimes) { int seconds = 0; String[] arrHMS = hmsTimes.split(":"); int h = Integer.parseInt(arrHMS[0]); int m = Integer.parseInt(arrHMS[1]); int s = Integer.parseInt(arrHMS[2]); seconds = h * 3600 + m * 60 + s; return seconds; }/*from ww w . j av a 2 s.co m*/ }