Uri downloaduri=taskSnapshot.getDownloadUrl();//here i cant use getdownloadurl() function
                DatabaseReference new_prod=db.push();
                new_prod.child("product name").setValue(prod_name);
                new_prod.child("product price").setValue(prod_price);
                new_prod.child("available stock").setValue(prod_quan);
                new_prod.child("product image").setValue(downloaduri);
                pd.dismiss();//fragments code


我无法使用getdownloadurl。我已经将映像存储在Firebase存储器中了吗?这是限制使用getdownloadurl的片段吗?我的动机是要查询存储在firebase中。请帮助我。

最佳答案

在最新版本的Firebase Storage SDK中删除了taskSnapshot.getDownloadUrl()方法。您现在需要从StorageReference获取下载URL。

调用StorageReference.getDownloadUrl()会返回Task,因为它需要从服务器检索下载URL。因此,您需要一个完成侦听器来获取实际的URL。

documentation on downloading a file


 storageRef.child("users/me/profile.png").getDownloadUrl().addOnSuccessListener(new OnSuccessListener<Uri>() {
    @Override
    public void onSuccess(Uri uri) {
        // Got the download URL for 'users/me/profile.png' in uri
        System.out.println(uri.toString());
    }
}).addOnFailureListener(new OnFailureListener() {
    @Override
    public void onFailure(@NonNull Exception exception) {
        // Handle any errors
    }
});



或者,如果您在上载后立即获得下载URL(例如您的情况),则第一行可能是:

taskSnapshot.getStorage().getDownloadUrl().addOnSuccessListener(new OnSuccessListener<Uri>() {


另请参阅:


Firebase Storage getDownloadUrl() method can't be resolved
Error: cannot find symbol method getDownloadUrl() of type com.google.firebase.storage.UploadTask.TaskSnapshot
Firebase文档中关于uploading a file and getting its download URL的示例

关于android - 如何在最新版本中使用getdownloadurl?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60529262/

10-09 12:53