Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.sql.Timestamp;

public class Main {
    public static String getDateTime(long t) {
        Timestamp timestamp = new Timestamp(t / 1000000); //make it miliseconds from nanoseconds
        return timestamp.toString();
    }
}