I have made a little app in ios+firebase, now I am trying to connect android. In ios I save date as double (for example: -242528463.775282), but then I trying to retrieve same d
Have a play around with statements below. In particular;
long myLong = todate.getTime();
and store this to interpret later perhaps?
import java.text.SimpleDateFormat;
import java.util.Date;
public class dateConvertDouble {
public static void main(String[] args) {
Date todate = new Date();
System.out.println(todate);
long myLong = todate.getTime();
System.out.println(myLong);
double myDouble = (double)myLong;
System.out.println(myDouble);
String myDateStr = new SimpleDateFormat("dd-MM-yyyy").format(myLong);
System.out.println(myDateStr);
}
}