Here you can find the source of getMilliseconds(String unixtime)
public static long getMilliseconds(String unixtime)
//package com.java2s; //License from project: Apache License public class Main { public static long getMilliseconds(String unixtime) { return Long.valueOf(unixtime) * 1000; }/*w w w .jav a 2s. co m*/ }