1. 程式人生 > >Java獲取當前時間,並解析成2018/08/08 08:08:08這種格式

Java獲取當前時間,並解析成2018/08/08 08:08:08這種格式

/**
    * 時間顯示格式轉化
    * 引數後臺返回時間字串  格式為yyyyMMddhhmmss,如2009年12月27日9點10分10秒錶示為20091227091010。
    */
    public static String getDateTime(String temp){
        temp = temp.substring(0, 4) + "/" + temp.substring(4, 6) + "/" + temp.substring(6, 8) + " "
                + temp.substring(8, 10) + ":" + temp.substring(10, 12) + ":" + temp.substring(12, 14);
        return temp;
    }
    /**
    * 獲取當前時間
    */
     SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
     String sysDateTime = sdf.format(new Date());
    
     /**
     * 獲取時間
     * @return
     */
    public static String getDate(){
        SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
        Date curDate =  new Date(System.currentTimeMillis());//獲取當前時間
        String str = formatter.format(curDate);
        return str;
    }