ContentResolver.query:CursorIndexOutOfBoundsException

时间:2017-10-28 04:20:05

标签: android

我使用的是Microsoft脸部识别示例App的功能。

// Get the rotation angle of the image taken.
private static int getImageRotationAngle(
        Uri imageUri, ContentResolver contentResolver) throws IOException {
    int angle = 0;
    Cursor cursor = contentResolver.query(imageUri,
            new String[] { MediaStore.Images.ImageColumns.ORIENTATION }, null, null, null);
    if (cursor != null) {
        if (cursor.getCount() == 1) {
            cursor.moveToFirst();
            angle = cursor.getInt(0);
        }
        cursor.close();
    } else {
        ExifInterface exif = new ExifInterface(imageUri.getPath());
        int orientation = exif.getAttributeInt(
                ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);

        switch (orientation) {
            case ExifInterface.ORIENTATION_ROTATE_270:
                angle = 270;
                break;
            case ExifInterface.ORIENTATION_ROTATE_180:
                angle = 180;
                break;
            case ExifInterface.ORIENTATION_ROTATE_90:
                angle = 90;
                break;
            default:
                break;
        }
    }
    return angle;
}

它在他们的应用程序中工作正常,但它抛出android.database.CursorIndexOutOfBoundsException:请求列:0,列数:0:

angle = cursor.getInt(0);

图像来自相机,我已经确认imageUri是正确的。但是,光标的数量是1,我无法从中获得任何东西。有谁知道为什么?

更新

转储游标到String的内容

>>>>> Dumping cursor android.content.ContentResolver$CursorWrapperInner@d830286
                                                    0 {
                                                       _display_name=IMG_344595033.jpg
                                                       _size=3335837
                                                    }
                                                    <<<<<

在示例应用程序中,他们使用Uri处理临时保存的拍摄照片,但我使用了文件提供程序,因为我有SDK 25.似乎光标应该为null,但文件提供程序使它包含一些东西。

解决:

我用getColumnCount替换了getCount,如果游标为空但getCount返回1。

2 个答案:

答案 0 :(得分:0)

我首先通过调用光标上的getColumnCount()来检查列数。您还可以通过查看此example来更改迭代光标的方式。

答案 1 :(得分:0)

如果有人在我的任务中错过了答案,我会把它放在这里以节省其他没有注意力的人的时间。 如果您使用自定义FileProvider只需替换 getCountgetColumnCount,如果游标为空但getCount返回1。