幾秒前,幾分鐘前,幾小時前,幾天前,幾月前,幾年前的java實現

來源:互聯網
上載者:User

標籤:

package com.zuidaima;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;public class RelativeDateFormat {    private static final long ONE_MINUTE = 60000L;    private static final long ONE_HOUR = 3600000L;    private static final long ONE_DAY = 86400000L;    private static final long ONE_WEEK = 604800000L;    private static final String ONE_SECOND_AGO = "秒前";    private static final String ONE_MINUTE_AGO = "分鐘前";    private static final String ONE_HOUR_AGO = "小時前";    private static final String ONE_DAY_AGO = "天前";    private static final String ONE_MONTH_AGO = "月前";    private static final String ONE_YEAR_AGO = "年前";    public static void main(String[] args) throws ParseException {        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:m:s");        Date date = format.parse("2013-11-11 18:35:35");        System.out.println(format(date));    }    public static String format(Date date) {        long delta = new Date().getTime() - date.getTime();        if (delta < 1L * ONE_MINUTE) {            long seconds = toSeconds(delta);            return (seconds <= 0 ? 1 : seconds) + ONE_SECOND_AGO;        }        if (delta < 45L * ONE_MINUTE) {            long minutes = toMinutes(delta);            return (minutes <= 0 ? 1 : minutes) + ONE_MINUTE_AGO;        }        if (delta < 24L * ONE_HOUR) {            long hours = toHours(delta);            return (hours <= 0 ? 1 : hours) + ONE_HOUR_AGO;        }        if (delta < 48L * ONE_HOUR) {            return "昨天";        }        if (delta < 30L * ONE_DAY) {            long days = toDays(delta);            return (days <= 0 ? 1 : days) + ONE_DAY_AGO;        }        if (delta < 12L * 4L * ONE_WEEK) {            long months = toMonths(delta);            return (months <= 0 ? 1 : months) + ONE_MONTH_AGO;        } else {            long years = toYears(delta);            return (years <= 0 ? 1 : years) + ONE_YEAR_AGO;        }    }    private static long toSeconds(long date) {        return date / 1000L;    }    private static long toMinutes(long date) {        return toSeconds(date) / 60L;    }    private static long toHours(long date) {        return toMinutes(date) / 60L;    }    private static long toDays(long date) {        return toHours(date) / 24L;    }    private static long toMonths(long date) {        return toDays(date) / 30L;    }    private static long toYears(long date) {        return toMonths(date) / 365L;    }}


幾秒前,幾分鐘前,幾小時前,幾天前,幾月前,幾年前的java實現

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.