Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.sql.Timestamp;

import java.text.SimpleDateFormat;

public class Main {
    public static String timeStampToDate(String time, String format) {
        SimpleDateFormat sdf = new SimpleDateFormat(format);
        Timestamp ts = new Timestamp(Long.valueOf(time) * 1000);
        String date = sdf.format(ts);
        return date;
    }
}