時間戳—時間互轉 java

public class TimeFormat {
	
	/**
	 * 將時間戳轉換爲時間
	 * @param s
	 * @return
	 * @throws Exception
	 */
    public static String stampToTime(String s) throws Exception{
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        long lt = new Long(s); //將時間戳轉換爲時間
        Date date = new Date(lt); //將時間調整爲yyyy-MM-dd HH:mm:ss時間樣式
        String res = simpleDateFormat.format(date);
        return res;
    }
    
    /**
     * 將時間轉換爲時間戳
     * @param time
     * @return
     * @throws Exception
     */
    public static String dateToStamp(String time) throws Exception {
    	SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm");
    	Date date = simpleDateFormat.parse(time);
        long ts = date.getTime();
        return String.valueOf(ts);
    }
}
相關文章
相關標籤/搜索