从Firebase下载的图片中获取路径?

时间:2016-11-15 16:26:27

标签: android firebase firebase-storage

我正在创建一个用户可以拍摄并上传图片的应用,而其他用户可以在ImageView下载和查看。为了防止我占用应用程序的所有内存,我将整个图片放在存储上。

它在这里使用了标准公式; https://firebase.google.com/docs/storage/android/download-files

问题是,我不知道如何获取图像下载的路径。我无法在AVD显示器中找到它,我需要每个下载图片的URL,因为它将是自定义的。我试着用这样的东西制作一个新的目录并把它放在那里,但它不起作用,也不能得到一条路径。

public void getImageFromPath() throws IOException {
            StorageReference islandRef = storageRef.child("userimages/test@test.dk/test@test.dk");

            String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());

            String imageFileName = "JPEG_" + timeStamp + "_";

            File directory = new File(Environment.getDataDirectory()
                    + "/Test/");
            if (!directory.exists()) {
                directory.mkdir();
            }
            final File localFile = File.createTempFile(imageFileName, ".jpg", directory);
            try {
                islandRef.getFile(localFile).addOnSuccessListener(new OnSuccessListener<FileDownloadTask.TaskSnapshot>() {
                    @Override
                    public void onSuccess(FileDownloadTask.TaskSnapshot taskSnapshot) {
                        Toast.makeText(getApplicationContext(), "Downloaded", Toast.LENGTH_SHORT).show();
                        Log.d(TAG, "Downloaded til path");
                        String mCurrentPhotoPath = "file:" + localFile.getAbsolutePath();
                        System.out.println(mCurrentPhotoPath);

                    }
                }).addOnFailureListener(new OnFailureListener() {
                    @Override
                    public void onFailure(@NonNull Exception exception) {
                        Log.d(TAG, "Downloaded IKKE til path");
                    }
                });
                throw new IOException("Works not");
            }
            catch(IOException e)
            {
                System.out.println(e.getMessage());
            }

        }

1 个答案:

答案 0 :(得分:0)

您正在创建临时本地文件。那是你下载数据的地方。

然后,您可以使用以下命令获取该文件的绝对路径:

File localFile = File.createTempFile(imageFileName, ".jpg", directory);
String path = localFile.getAbsolutePath();