使用SimpleDateFormat 將毫秒轉換成時分秒 格式:HH:mm:ss

public static String dateFormatFromMilliSecond(long seconds) {
		// 初始化format格式
		SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");

		// 設置時區,跳過此步驟會默認設置爲"GMT+08:00" 得到的結果會多出來8個小時
		dateFormat.setTimeZone(TimeZone.getTimeZone("GMT+00:00"));

		String time = dateFormat.format(seconds);

		return time;
	}

例如,輸入2000的話,輸出結果: 00:00:02

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章