FirebaseStorage storageDisplayImg;
StorageReference storageRef;
private FirebaseAuth auth;
storageDisplayImg=FirebaseStorage.getInstance();
auth = FirebaseAuth.getInstance();
FirebaseUser userConnect = auth.getCurrentUser();
String id_user=userConnect.getUid();
storageRef = storageDisplayImg.getReference().child(item.getChemin_image()); // return gs://mydreambook-32321.appspot.com/images/test23-03-2017_16:46:55
if (item.getChemin_image() != null&&id_user != null) {
Glide.with(convertView.getContext() )
.using(new FirebaseImageLoader())
.load(storageRef)
.into(profilePic);
profilePic.setVisibility(View.VISIBLE);
} else {
profilePic.setVisibility(View.GONE);
}
StorageException has occurred. Object does not exist at location. Code: -13010 HttpResult: 404
更新,存储FireBase中的映像
StorageException已发生。该对象不存在于该位置。代码:-13010 httpresult:404 我找到了以前的大部分问题和答案,但它们对我不起作用。提前谢了。
我已经尝试了StackOverflow上发布的所有解决方案,但我的问题没有在那里讨论,所以我提出了这个问题。在我的例子中,图像被上传到firebase存储桶中,但没有在firestore中插入新记录,因此发生了此错误。我的代码:- 存储数据函数如下所示:-
这是我的logcat: 2018-11-04 08:54:03.257 205 12-20582/com.example.nabil.loginDemo E/StorageException:StorageException已发生。对象的位置不存在。代码:-13010 httpresult:404 201 8-11-04 08:54:03.268 205 12-20582/com.example.
我正在使用这段代码,但当我从首选项获得位置时,位置返回如下所示... 位置[mprovider=存储,Mtime=0,mlatitude=30.0,montilunde=76.0,mhasaltitude=false,maltitude=0.0,mhasspeed=false,mspeed=0.0,mhasbearing=false,mbearing=0.0,mhasaccuracy=false,
在创建用户配置文件的时候,我试图为我的用户使用SetPhotori,我使用两个seperate方法首先上传,然后获取url,这两个方法都是从“CreateUserWithEmailandPassword”方法中调用的,但我得到了这个错误消息:com.google.firebase.storage.StorageException:Object不存在。 //如果我使用ref.toString(),结
我有两个程序。第一个分配共享内存文件,第二个从中读取。。我使用placement new将对象放置到此内存中,以确保对象不会使用新的或分配共享内存文件之外的任何内存。 我的阵列结构: 方案1: 方案2: > 程序一将SHMArray放置在内存中,位置为new。程序二在程序一已经放置的对象上做同样的事情(覆盖它)。这是未定义的行为吗?我认为不是,但我想确认一下。 两个程序都不调用析构函数数组- 我基