I want to convert Long value to String or Date in this format. I got this value in Long format: 2343805819061
which I got from Firebase timestamp. When ever I am trying I got the error that cant use Date into string:
//constrictor
public Wall_post( Date time_stamp) {
this.time_stamp = time_stamp;
}
public Date getTime_stamp() {
return time_stamp;
}
public void setTime_stamp(Date time_stamp) {
this.time_stamp = time_stamp;
}