9

我一直在尝试在 StrictMode 中运行我的应用程序,以检查是否存在任何可能偷偷摸摸的隐藏问题。我遇到的一个问题是,在使用 ContentResolver 时,Leaked DatabaseConctions 似乎是误报。

经过一些实验后,问题简化为以下两行代码:

Cursor c = context.getContentResolver().query(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, cols, null, null, MediaStore.Video.Media.DEFAULT_SORT_ORDER);

c.close()

上面的 2 行生成以下 StrictMode 违规:

ERROR/StrictMode(26219): Releasing cursor in a finalizer. Please ensure that you explicitly call close() on your cursor: 

ERROR/StrictMode(26219): android.database.sqlite.DatabaseObjectNotClosedException: Application did not close the cursor or database object that was opened here

ERROR/StrictMode(26219):
        at android.database.CursorWindow.<init>(CursorWindow.java:62)
        at android.content.ContentProviderProxy.query(ContentProviderNative.java:403)
        at android.content.ContentResolver.query(ContentResolver.java:302)

我假设这是特定于 Cursor 由 contentProvider 返回的事实(因此它不是直接的 SQLite 游标)。

如果这确实是误报或确实存在泄漏的光标,是否有人有任何见解。

4

1 回答 1

1

我想我可以解释问题出在哪里。当您查询数据库时,您可能会收到异常。因此,将创建一个游标 c.close() 将不会被调用,因为存在异常。因此,您必须将光标的创建放在 try catch 块中,并在 finally 块中关闭光标。

于 2011-12-22T09:26:57.093 回答