Skip to content

Instantly share code, notes, and snippets.

@vishvendra01
Created September 10, 2015 06:54
Show Gist options
  • Save vishvendra01/fc65449ab40d8836184c to your computer and use it in GitHub Desktop.
Save vishvendra01/fc65449ab40d8836184c to your computer and use it in GitHub Desktop.
convert time-stamp to date
// convert time-stamp to date
Calendar cal = Calendar.getInstance(Locale.ENGLISH);
cal.setTimeInMillis(Long.valueOf(data.getDate())* 1000);
Log.d("dateinstamp", data.getDate());
String date = DateFormat.format("dd-MM-yyyy", cal).toString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment