請教一個android問題,在保存數據到SQlite數據庫中時,怎麼將mm/dd/yyyy
格式的日期轉換為yyyy-mm-dd
這種格式?
謝謝。
SimpleDateFormat new_format= new SimpleDateFormat("yyyy-MM-dd);
SimpleDateFormat sdf = new SimpleDateFormat("mm/dd/yyyy");
Date date;
String local_date = null;
try{
date = sdf.parse(value);
local_date = new_format.format(date);
}catch(ParseException e)
{
e.printStackTrace();
}