显示时间,如果与当前时间差别小于一天,则自动用**秒(分,小时)前,如果大于一天则用format规定的格式显示
/** * * @author wxy * @param ctime * 时间 * @param format * 格式 格式描述:例如:yyyy-mm-dd yyyy-mm-dd hh:mm:ss * @return */ public static string showtime(date ctime, string format) { //system.out.println("当前时间是:"+new timestamp(system.currenttimemillis())); //system.out.println("发布时间是:"+df.format(ctime).tostring()); string r = ""; if(ctime==null)return r; if(format==null)format="mm-dd hh:mm"; long nowtimelong = system.currenttimemillis(); long ctimelong = ctime.gettime(); long result = math.abs(nowtimelong - ctimelong); if(result < 60000){// 一分钟内 long seconds = result / 1000; if(seconds == 0){ r = "刚刚"; }else{ r = seconds + "秒前"; } }else if (result >= 60000 && result < 3600000){// 一小时内 long seconds = result / 60000; r = seconds + "分钟前"; }else if (result >= 3600000 && result < 86400000){// 一天内 long seconds = result / 3600000; r = seconds + "小时前"; }else if (result >= 86400000 && result < 1702967296){// 三十天内 long seconds = result / 86400000; r = seconds + "天前"; }else{// 日期格式 format="mm-dd hh:mm"; simpledateformat df = new simpledateformat(format); r = df.format(ctime).tostring(); } return r; }
这里可以更具自己具体的需求进行扩展~~
public static void main(string[] args) {try{simpledateformat df = new simpledateformat("yyyy-mm-dd hh:mm:ss");system.out.println(showtime(df.parse("2015-02-27 11:31:00"),"yyyy-mm-dd hh:mm:ss"));}catch (exception e) {// todo: handle exception}}
当前运行:4分钟前
以上就是java显示1秒前,1分钟前,2分钟前,3天前的详细内容。