Convert time in long to specific date format – SimpleDateFormat in action!
Here is that pretty snippet for converting long to specific date format: I took source from: http://stackoverflow.com/a/7954038/619673 public static String getDate(long milliSeconds, String dateFormat) { // Create a DateFormatter object…