How to convert timestamp to time in java?

2.8k Views Asked by At

How can I convert MySQL timestamp to time in java? I tried something with SimpleDateFormat but it didn't work.

1

There are 1 best solutions below

0
On
public Date getDate(Timestamp timestamp){
    return new Date(timestamp.getTime());
}