anotherim/src/de/gultsch/chat/utils/Beautifier.java

26 lines
654 B
Java
Raw Normal View History

2014-01-26 02:27:55 +00:00
package de.gultsch.chat.utils;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Beautifier {
public static String readableTimeDifference(long time) {
if (time==0) {
return "just now";
}
Date date = new Date(time);
long difference = (System.currentTimeMillis() - time) / 1000;
if (difference<60) {
return "just now";
} else if (difference<60*10) {
return difference / 60 + " min ago";
} else if (difference<60*60*24) {
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
return sdf.format(date);
} else {
SimpleDateFormat sdf = new SimpleDateFormat("M/D");
return sdf.format(date);
}
}
}