0
我已經嘗試了下面的代碼,它顯示了前兩次運行的日期值,但後來開始拋出一個nullpointerexception,任何想法爲什麼會發生這種情況?MongoDB的日期集合中的NullPointerException
DBCursor c=test.find();
while(c.hasNext())
{
DBObject dbc=c.next();
Date n=(Date)dbc.get("time");
System.out.println(n);
Calendar cal = new GregorianCalendar();
cal.setTime(n);
System.out.println(cal.get(Calendar.DAY_OF_MONTH));
}
發佈錯誤? – tanishalfelven 2014-10-05 07:54:09