Search code examples
javaandroiduriandroid-file

How do I get the URI of a file saved with FileOutputStream?


Here's the code that saves an image file to... somewhere? How do I get the URI for the file "webimage"?

Bitmap bmp = ((BitmapDrawable)imageView.getDrawable()).getBitmap();
        String fileName = "webImage";//no .png or .jpg needed
        try {
            ByteArrayOutputStream bytes = new ByteArrayOutputStream();
            bmp.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
            FileOutputStream fo = openFileOutput(fileName, Context.MODE_PRIVATE);
            fo.write(bytes.toByteArray());
            // remember close file output
            fo.close();
        } catch (Exception e) {
            e.printStackTrace();
        }

Solution

  • Use getFileStreamPath() like this:

    String fileName = "webImage";
    //...
    Uri uri = Uri.fromFile(getFileStreamPath(fileName));