In a scenario, i am getting a timestamp in my Date variable How to convert TImestamp to Date Format in java?
- 5 years ago
here is the solution :
Timestamp stamp = new Timestamp("1511784709"); Date date = new Date(stamp.getTime()); System.out.println(date);
Hot Questions