Here you can find the source of millisToDate(String stime)
public static final Date millisToDate(String stime)
//package com.java2s; import java.util.*; public class Main { public static final Date millisToDate(String stime) { long time = Long.parseLong(stime); return new Date(time); }/*from ww w.jav a2s .co m*/ }