1

我正在使用代码从日历中获取事件。

但我得到了这样的错误

request time failed: java.net.SocketException: Address family not supported by protocol

调试时,我注意到这一行的代码崩溃:

Cursor eventCursor = contentResolver
                    .query(builder.build(), new String[]
                    { "title", "begin", "end", "allDay" },
                            "Calendars._id=" + 1, null,
                            "startDay ASC, startMinute ASC");

 System.out.println("eventCursor count=" + eventCursor.getCount());

任何想法都会有所帮助。谢谢。

4

1 回答 1

1

操作系统版本发生错误。可能您正在使用 SDK-7。试试这个代码,

Uri.Builder builder;
      if (android.os.Build.VERSION.SDK_INT <= 7)
      {
       // the old way
       builder = Uri.parse("content://calendar/instances/when").buildUpon();
      } else
      {
       // the new way
       builder = Uri
         .parse("content://com.android.calendar/instances/when").buildUpon();
      }

这应该可以正常工作。

于 2012-04-20T14:05:15.450 回答