Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static long convertMSFromHM(String hm) {
String str[] = hm.split(":");
return (Integer.valueOf(str[0]) * 60 + Integer.valueOf(str[1])) * 60 * 1000;
}
}