Here you can find the source of getMillisecond(String forDate)
public static int getMillisecond(String forDate)
//package com.java2s; //License from project: Open Source License public class Main { public static int getMillisecond(String forDate) { return Integer.parseInt(forDate.substring(20, 23)); }//from w w w.j a v a 2 s . c om }