从Android库加载位图图像时出现FileNotFound异常

时间:2015-08-17 12:06:35

标签: java android bitmap android-asynctask filenotfoundexception

我正在尝试从Android图库创建位图图像。 我在AsyncTask中执行此操作,这就是为什么我在我的实现中有一个游标的原因。代码如下

                try {
                uri = Uri.parse(uriStr);
            } catch (Exception e) {
                Log.e(LOG_TAG, "problem with the image loading: " + e);
            }
                if(uri == null)
                    continue;
                Bitmap bm = null;
                try{
                    bm = MediaStore.Images.Media.getBitmap(activity.getContentResolver(), uri);
                } catch (FileNotFoundException e) {
                    Log.e(LOG_TAG, "Bitmap not found: " + e);
                } catch (IOException e) {
                    Log.e(LOG_TAG, "Bitmap IO error: " + e);

当我调试时,我注意到抛出了一个FileNotFoundException, 输出:

  

08-17 13:47:55.754 30333-30668 / com.example.jonas.shoppinglist   W / System.err:java.io.FileNotFoundException:没有内容提供者:   /storage/emulated/0/Download/unnamed.jpg 08-17 13:47:55.833   30333-30668 / com.example.jonas.shoppinglist W / System.err:at   android.content.ContentResolver.openTypedAssetFileDescriptor(ContentResolver.java:1086)   08-17 13:47:55.921 30333-30668 / com.example.jonas.shoppinglist   W / System.err:at   android.content.ContentResolver.openAssetFileDescriptor(ContentResolver.java:941)   08-17 13:47:55.975 30333-30668 / com.example.jonas.shoppinglist   W / System.err:at   android.content.ContentResolver.openInputStream(ContentResolver.java:666)   08-17 13:47:56.019 30333-30668 / com.example.jonas.shoppinglist   W / System.err:at   android.provider.MediaStore $图片$ Media.getBitmap(MediaStore.java:849)   08-17 13:47:56.062 30333-30668 / com.example.jonas.shoppinglist   W / System.err:at   com.example.jonas.shoppinglist.processes.ShoppingGallery.doInBackground(ShoppingGallery.java:51)

结果是我没有得到我的图库的单个位图图像。有什么问题?

1 个答案:

答案 0 :(得分:0)

you can try below code for achiving proper image path from gallery .....


public void pickImage() {
            Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
            intent.setType("image/*");
            startActivityForResult(intent, 1000);
        }

    @Override
        public void onActivityResult(int requestCode, int resultCode, Intent data) {
            super.onActivityResult(requestCode, resultCode, data);
            if (requestCode == 1000 && resultCode == Activity.RESULT_OK) {
                if (data == null) {
                    // Display an error
                    return;
                }

                if (Build.VERSION.SDK_INT < 11)
                    ImagePath = RealPathUtil.getRealPathFromURI_BelowAPI11(this,
                            data.getData());

                // SDK >= 11 && SDK < 19
                else if (Build.VERSION.SDK_INT < 19)
                    ImagePath = RealPathUtil.getRealPathFromURI_API11to18(this,
                            data.getData());

                // SDK > 19 (Android 4.4)
                else
                    ImagePath = RealPathUtil.getRealPathFromURI_API19(this,
                            data.getData());

            }
        }
    -----------------------------------
    //class 
    import android.annotation.SuppressLint;
    import android.content.Context;
    import android.content.CursorLoader;
    import android.database.Cursor;
    import android.net.Uri;
    import android.provider.DocumentsContract;
    import android.provider.MediaStore;

    public class RealPathUtil {

        @SuppressLint("NewApi")
        public static String getRealPathFromURI_API19(Context context, Uri uri){
            String filePath = "";
            String wholeID = DocumentsContract.getDocumentId(uri);

             // Split at colon, use second item in the array
             String id = wholeID.split(":")[1];

             String[] column = { MediaStore.Images.Media.DATA };     

             // where id is equal to             
             String sel = MediaStore.Images.Media._ID + "=?";

             Cursor cursor = context.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, 
                                       column, sel, new String[]{ id }, null);

             int columnIndex = cursor.getColumnIndex(column[0]);

             if (cursor.moveToFirst()) {
                 filePath = cursor.getString(columnIndex);
             }   
             cursor.close();
             return filePath;
        }


        @SuppressLint("NewApi")
        public static String getRealPathFromURI_API11to18(Context context, Uri contentUri) {
              String[] proj = { MediaStore.Images.Media.DATA };
              String result = null;

              CursorLoader cursorLoader = new CursorLoader(
                      context, 
                contentUri, proj, null, null, null);        
              Cursor cursor = cursorLoader.loadInBackground();

              if(cursor != null){
               int column_index = 
                 cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
               cursor.moveToFirst();
               result = cursor.getString(column_index);
              }
              return result;  
        }

        public static String getRealPathFromURI_BelowAPI11(Context context, Uri contentUri){
                   String[] proj = { MediaStore.Images.Media.DATA };
                   Cursor cursor = context.getContentResolver().query(contentUri, proj, null, null, null);
                   int column_index
              = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
                   cursor.moveToFirst();
                   return cursor.getString(column_index);
        }
    }
相关问题