搜尋

首頁  >  問答  >  主體

java - 顯示的時間能不能去掉毫秒

#資料庫裡面的時間是DateTime類型的
取得時間

public Timestamp getDatetime() {
        return new Timestamp(System.currentTimeMillis());
    }

能不能去掉啊好難看

仅有的幸福仅有的幸福2759 天前993

全部回覆(2)我來回復

  • 大家讲道理

    大家讲道理2017-06-23 09:16:23

    看起來應該是在 TimestampString 的時候,直接呼叫了 TimestamptoString 方法。
    最簡單的方法就是你找到顯示的地方,將 String str = timestamp.toString() 類似的程式碼改為

    String str = timestamp.toString();
    str = str.substring(0, str.length() - 4);

    回覆
    0
  • 代言

    代言2017-06-23 09:16:23

    使用SimpleDateFormatTimestamp轉為String類型。

    public Timestamp getDatetime() {
        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        Timestamp now = new Timestamp(System.currentTimeMillis());
        String str = df.format(now);
        
        return str;
    }

    回覆
    0
  • 取消回覆