1. ホーム
  2. android

[解決済み] AndroidでファイルのパスをUriに変換する

2022-10-12 14:15:12

質問

カメラで動画を撮影するアプリがあります。動画のファイルパスを取得することはできますが、Uriとして取得する必要があります。

取得したファイルパスです。

/storage/emulated/0/DCIM/Camera/20141219_133139.mp4

必要なのはこんな感じです。

content//media/external/video/media/18576.

これは私のコードです。

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        // if the result is capturing Image

         if (requestCode == CAMERA_CAPTURE_VIDEO_REQUEST_CODE) {
            if (resultCode == RESULT_OK) {
                // video successfully recorded
                // preview the recorded video
                // selectedImageUri = data.getData();
                // Uri selectedImage = data.getData();
                previewVideo();

                tv1.setText(String.valueOf((fileUri.getPath())));
                String bedroom=String.valueOf((fileUri.getPath()));
                Intent i = new Intent();
                i.putExtra(bhk1.BEDROOM2, bedroom);
                setResult(RESULT_OK,i); 
                btnRecordVideo.setText("ReTake Video");

            } else if (resultCode == RESULT_CANCELED) {
                // user cancelled recording
                Toast.makeText(getApplicationContext(),
                        "User cancelled video recording", Toast.LENGTH_SHORT)
                        .show();
            } else {
                // failed to record video
                Toast.makeText(getApplicationContext(),
                        "Sorry! Failed to record video", Toast.LENGTH_SHORT)
                        .show();
            }
        }
    }

String変数からUriが必要です。 bedroom .

どのように解決するのですか?

次のコードを試してみてください。

Uri.fromFile(new File("/sdcard/sample.jpg"))