我的代码看起来像: -
DateFormat df = DateFormat.getDateTimeInstance();
String currentDateTimeString = df.format(new Date());
Date today = df.parse(currentDateTimeString);
Date previous_date = new Date(today.getTime()-(24 * 3600000));
cursor = db.rawQuery(" select * from Table_Name where Date > " + previous_date ,null);
today、previous_date 和 next_date 的值是正确的,但查询无法执行并引发异常。任何形式的帮助都会很棒。