java如何實現(xiàn)顯示當(dāng)前運行時間?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)從2013年創(chuàng)立,先為潯陽等服務(wù)建站,潯陽等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為潯陽企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
顯示時間,如果與當(dāng)前時間差別小于一天,則自動用**秒(分,小時)前,如果大于一天則用format規(guī)定的格式顯示
/** * * @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("當(dāng)前時間是:"+new Timestamp(System.currentTimeMillis())); //System.out.println("發(fā)布時間是:"+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){// 一分鐘內(nèi) long seconds = result / 1000; if(seconds == 0){ r = "剛剛"; }else{ r = seconds + "秒前"; } }else if (result >= 60000 && result < 3600000){// 一小時內(nèi) long seconds = result / 60000; r = seconds + "分鐘前"; }else if (result >= 3600000 && result < 86400000){// 一天內(nèi) long seconds = result / 3600000; r = seconds + "小時前"; }else if (result >= 86400000 && result < 1702967296){// 三十天內(nèi) long seconds = result / 86400000; r = seconds + "天前"; }else{// 日期格式 format="MM-dd HH:mm"; SimpleDateFormat df = new SimpleDateFormat(format); r = df.format(ctime).toString(); } return r; }
這里可以更具自己具體的需求進(jìn)行擴展~~
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 } }
當(dāng)前運行:4分鐘前
關(guān)于java如何實現(xiàn)顯示當(dāng)前運行時間問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。