java 獲取時間戳的三種方式

 

java 獲取時間戳的三種方式

CreationTime--2018年7月13日16點29分

Author:Marydon

1.實現方式

  方式一:推薦使用html

System.currentTimeMillis()

  方式二java

new Date().getTime();

  方式三spa

Calendar.getInstance().getTimeInMillis();

2.哪一個最快?

  方式一 > 方式二 > 方式三code

2019/01/09orm

3.時間戳轉日期

/**
 * 時間戳轉日期
 * @explain
 * @param timestamp 時間戳能夠爲String類型,也能夠爲long類型
 * @return yyyy-MM-dd HH:mm:ss格式字符串
 */
public static String timestampToDate(Object timestamp) {
    long sjc = 0;
    String dateStr = "";
    if (timestamp instanceof String)
        sjc = Long.parseLong((String) timestamp);
    else if (timestamp instanceof Long)
        sjc = (Long) timestamp;
    else 
        return dateStr;
    
    Date date = new Date(sjc);
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    dateStr = sdf.format(date);
    return dateStr;
}

 

相關文章
相關標籤/搜索