Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unix timestamp to datetime in android [duplicate]

Possible Duplicate:
Converting Timestamp as String to Date in android

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); 
like image 732
AvMishra Avatar asked Nov 07 '11 09:11

AvMishra


1 Answers

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.

like image 75
Che Jami Avatar answered Oct 01 '22 22:10

Che Jami