將此日期格式轉換成2013-01-15 06:20:00轉換爲此格式2013-01-15。只需簡單地刪除時間日期。我用轉換日期至特定格式
SimpleDateFormat dateFormat = new SimpleDateFormat(
"yyyy-mm-dd");
//Date convertedDate = new Date();
Date convertedDate = null;
try {
convertedDate = dateFormat.parse(dateString);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
如何獲取或刪除時間的日期。
好的答案也有效。只有兩條線。大。 – URAndroid