将包含时间的字符串与android中的系统时间进行比较

时间:2014-03-05 16:08:32

标签: java android date classcastexception

我是android新手。我将时间存储在格式为hh:mm的字符串中,并希望将其与当前系统时间进行比较。如果匹配我想生成通知。 这是代码

注意: STRING str拥有时间。

     time = days+1;
    while(i>0)
    {    
    long hour=calendar.get(calendar.HOUR_OF_DAY);
    long min=calendar.get(calendar.MINUTE);
    String str = alarm[time];
    SimpleDateFormat formatter = new SimpleDateFormat("hh:mm");
    try {
       Date date = (Date)formatter.parse(str);
       Calendar c2 = GregorianCalendar.getInstance(); // creates a new calendar instance
       c2.setTime(date);   // assigns calendar to given date 
       hours=c2.get(Calendar.HOUR_OF_DAY); // gets hour in 24h format
        minutes=c2.get(Calendar.MINUTE);   
        if(hours==hour && min==minutes)
            {
            builder.setContentIntent(contentIntent)
            .setSmallIcon(R.drawable.ic_books)
            .setLargeIcon(BitmapFactory.decodeResource(res, R.drawable.ic_launcher))
            .setTicker(res.getString(R.string.Cal))
            .setWhen(System.currentTimeMillis())
            .setAutoCancel(true)
            .setContentTitle("You Have a Lecture !!")
            .setContentText(alarm[time+1]);
            Notification n = builder.build();
            nm.notify(0, n);                                            
            }
        i--;
        time=time+days;
        } catch (java.text.ParseException e) {
            e.printStackTrace();
            }
        }

但我得到了

java.lang.ClassCastException: java.util.Date cannot be cast to java.sql.Date

请帮忙。

2 个答案:

答案 0 :(得分:3)

您已导入以下套餐...

 import java.sql.Date;

您应该import包裹如下...所以,您应该删除上面的importimport以下内容。

 import java.util.Date;

答案 1 :(得分:2)

  

java.lang.ClassCastException:java.util.Date无法强制转换为   java.sql.Date

这一行

(Date)formatter.parse(str)

返回java.util.Date个对象,但您将其转换为java.sql.Date。检查导入并进行调整(从java.sql.Date更改为java.util.Date