Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have time in milliseconds, now I want to separate time and date from these milliseconds.

how can i do this???

share|improve this question
Can you show the form which you have? – Gowri shankar Dec 2 '12 at 9:39

4 Answers

up vote 1 down vote accepted

you can use like this

Calendar cl=Calendar.getInstance();
    cl.setTimeInMillis(milliseconds);  //here your time in miliseconds
    String date=""+cl.get(Calendar.DAY_OF_MONTH)+":"+cl.get(Calendar.MONTH)+":"+cl.get(Calendar.YEAR);
    String time=""+cl.get(Calendar.HOUR_OF_DAY)+":"+cl.get(Calendar.MINUTE)+":"+cl.get(Calendar.SECOND);
share|improve this answer

You could convert the milliseconds to a date object and then extract date in the format of a time string and another string of just the date

share|improve this answer
Date is deprecated. – M Mohsin Naeem Dec 2 '12 at 10:07
i didn't even mean Date() specifically but no it isn't, not yet, and not for these purposes. don't confuse everyone else. – mango Dec 2 '12 at 10:50
just setTime is not deprecated. other methods (most of them) are deprecated. So why involve Date to just set the time? Why not use Calnedar class – M Mohsin Naeem Dec 2 '12 at 10:57
i have no agenda with any specific class. but if some methods are still working fine for what i need and are clearly not deprecated, i don't throw the baby out with the bathwater. – mango Dec 2 '12 at 11:02
yes but after setTime. When he is going to retrieve the date..then again he has no option^^ other then using the Calender class. Why not adopt a new born baby! – M Mohsin Naeem Dec 2 '12 at 11:05

This function will give you a String date from milliseconds

public static String getFormattedDateFromTimestamp(long timestampInMilliSeconds)
{
    Date date = new Date(); 
    date.setTime(timestampInMilliSeconds);
    String formattedDate=new SimpleDateFormat("MMM d, yyyy").format(date);
    return formattedDate;

}
share|improve this answer

Use a Calendar to get the values of different time fields:

Calendar cal = Calendar.getInstance();
cal.setTimeInMillis(timeInMillis);
int dayOfMonth = cal.get(Calendar.DAY_OF_MONTH);
int monthOfYear = cal.get(Calendar.MONTH);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.