将此日期格式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();
}
如何从日期中获取或删除时间。