0

我正在尝试减去插入日期和当前日期。在 SQLite 中,插入的日期已经是 dd/mm/yyyy 格式。

这是我的编码

Calendar today = Calendar.getInstance();
    String inDate = EventListAdapter.KEY_DATE;
    DateFormat formatter ; 
    Date insertDate ; 
    formatter = new SimpleDateFormat("dd/MM/yyyy");
    insertDate = formatter.parse(inDate);

    long diff = insertDate.getTime() - today.getTimeInMillis();
    dayLeft = (int) (diff / (24 * 60 * 60 * 1000));

insertDate取自 SQLite 。

然后那里的问题仍然存在错误。

Description Resource    Path    Location    Type
Unhandled exception type ParseException {my project path}line 46    Java Problem
4

0 回答 0