Seeing that you are using a dateformat in each method, you can use a different format string in each. For example:
public long getTimeStampDay()
{
String day = new SimpleDateFormat("dd")
.format(new Date(born_date.getDate()));
.....
return Long.parseLong(day); //just the day
}