My server is returning a timestamp 1322400600 in String, In my android application, i need to convert it like Nov 27, 2011 07:00am. I don't know how to do this please help me out.

- Thanks AvMishra

Solutions:

I used following code to get the desired value

long dv = Long.valueOf(timestamp_in_string)*1000;// its need to be in milisecond
Date df = new java.util.Date(dv);
String vv = new SimpleDateFormat("MM dd, yyyy hh:mma").format(df);

great help by Che Jami

link|improve this question

80% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You can use new java.util.Date(Long.parseLong(timeInMillis)). With this Date object there are several ways to extract the date in your desired String format, the simplest way using Date.toString(). Alternatively, and more appropriately you can use a SimpleDateFormat with the exact pattern you want.

link|improve this answer
thanks Che Jami! for your quick response. – AvMishra Nov 7 '11 at 10:50
1  
I used following code to get the desired value long dv = Long.valueOf(timestamp_in_string)*1000;// its need to be in milisecond Date df = new java.util.Date(dv); String vv = new SimpleDateFormat("MM dd, yyyy h:ma").format(df); – AvMishra Nov 7 '11 at 10:59
feedback

This should get you the same time format:

System.currentTimeMillis();
link|improve this answer
1  
thanks for response. – AvMishra Nov 7 '11 at 10:56
feedback

Your Answer

 
or
required, but never shown

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