public static void main(String[] args) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); long nowTime=1379313866505l; String date = sdf.format(new Date(nowTime)); System.out.println(date); }