I need to retrieve day year and month from a timestamp object as long numbers:
public long getTimeStampDay() { String iDate = new SimpleDate
I found a simple way to do that:
born_date.getDay(); born_date.getMonth(); born_date.getYear();
even if method getDay getMonth and getYear are deprecated. I think that Bozho solution is the best one.