每当用户启动应用程序时,我都会将当前时间存储在数据库中。
Calendar c = Calendar.getInstance();
String str = c.getTime().toString();
Log.i("Current time", str);
在数据库端,我将当前时间存储为字符串(如您在上面的代码中看到的)。因此,当我从数据库加载它时,需要将其强制转换为Date对象。我看到了一些所有人都使用“ DateFormat”的示例。但是我的格式与日期格式完全相同。因此,我认为没有必要使用“ DateFormat”。我对吗?
无论如何,有没有直接将此String转换为Date对象?我想将此存储时间与当前时间进行比较。
谢谢
======> 更新
谢谢亲爱的家伙们。我使用以下代码:
private boolean isPackageExpired(String date){
boolean isExpired=false;
Date expiredDate = stringToDate(date, "EEE MMM d HH:mm:ss zz yyyy");
if (new Date().after(expiredDate)) isExpired=true;
return isExpired;
}
private Date stringToDate(String aDate,String aFormat) {
if(aDate==null) return null;
ParsePosition pos = new ParsePosition(0);
SimpleDateFormat simpledateformat = new SimpleDateFormat(aFormat);
Date stringDate = simpledateformat.parse(aDate, pos);
return stringDate;
}