1
2
3
4
5
6
7
8
9
10
11
12
| package com.moral.util;
|
| public class LengthOfTimeUtils {
|
| public static int Seconds(String time){
| String hour_minute_second = time.substring(11,19);
| String[] arr = hour_minute_second.split(":");
| int seconds = Integer.parseInt(arr[0])*3600+Integer.parseInt(arr[1])*60+Integer.parseInt(arr[2]);
| return seconds;
| }
|
| }
|
|