Possible Duplicate:
How to transform currentTimeMillis to a readable date format?
This is my code:
long currentTime = System.currentTimeMillis();
final String appTime1 = Long.toString(currentTime);
it display the time as 1353929203337
Please i ask how can change the first format of time to this format 10:25:24 ?
Thank you.