gpt4 book ai didi

android - 解析文件查询不工作

转载 作者:搜寻专家 更新时间:2023-11-01 07:54:59 24 4
gpt4 key购买 nike

我正在尝试通过查询从 Parse 获取文件。 Parse 对如何从云端获取文件非常模糊,但我设法创建了一个基本查询来尝试获取文件

ParseQuery query = ParseUser.getQuery();
query.getInBackground(objects.get(i).getObjectId(), new GetCallback<ParseObject>() {

public void done(ParseObject object, ParseException e) {

ParseFile fileObject = (ParseFile) object.get("picture");
fileObject.getDataInBackground(new GetDataCallback() {

public void done(byte[] data, ParseException e) {
if (e == null) {
Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length);

ImageView image = (ImageView) findViewById(R.id.profilePicture);

image.setImageBitmap(bmp);

} else {
Toast.makeText(getApplicationContext(), "Image Not Found", Toast.LENGTH_SHORT).show();
}
}
});
}
});

上面的代码在行中给出了一个NullPointerException:

ParseFile fileObject = (ParseFile) object.get("picture");

需要帮助通过此方法获取文件。或者是否有更简单的方法从 Parse Cloud 获取文件?感谢所有帮助。

最佳答案

根据我的经验,包含以下行的空指针异常:

ParseFile fileObject = (ParseFile) object.get("picture");

告诉我在尝试访问 get() 方法期间 object 为 null。这告诉我您的查询格式错误或服务器上没有匹配的对象,更有可能是第二个。

关于您的 Parse 云的数据结构,我没有任何信息,所以让我给您举个例子。

如果你有一个老用户,他的 Parse ObjectId 是 xyz123ab 并且他在键/列 profilePicture 下有一个图片文件。您有一个 User 包含一个包含图片数据的 ParseFile,或 [User [File [PictureData]]]。

以下是如何在代码中检索上述内容:

String objectIdOfUser = "xyz123ab";
ParseQuery<ParseUser> query = ParseUser.getQuery();
query.getInBackground(objectIdOfUser, new GetCallback<ParseUser>() {
@Override
public void done(ParseUser parseUser, ParseException e) {
if (e == null) {
ParseFile picture = parseUser.getParseFile("profilePicture");
if (picture == null) {
// no parseFile in column "profilePicture" in this user.
return; // there will be no data to retrieve
}

picture.getDataInBackground(new GetDataCallback() {
@Override
public void done(byte[] data, ParseException e) {
if (e == null) {
if (data.length == 0) {
// data found, but nothing to extract. bad image or upload?
return; // failing out
}

// SUCCESS
// convert data and display in an imageview
} else {
// ParseFile contained no data. data not added to ParseFile?
}
}
});
} else {
// no users had this objectId
}
}
});

如果您不使用 ParseUser,请在下面将 ParseUser 更改为 ParseObject。不要忘记将字符串 "ObjectName" 更改为您的对象。

// ... etc
ParseQuery<ParseObject> query = ParseObject.getQuery("ObjectName");
query.getInBackground(objectIdOfObject, new GetCallback<ParseObject>() {
@Override
public void done(ParseObject object, ParseException e) {
if (e == null) {
ParseFile picture = object.getParseFile("profilePicture");
// etc...

此外,请确保您的数据已正确加载到服务器中。不幸的是,在 Parse 的 Web 客户端上确定这可能很棘手。正确上传图片与此类似但相反,改天再回答。

请检查您的代码以获取此处所示的 objectId:

objects.get(i).getObjectId()

确定您是否确实在访问您认为是的 objectId,可能使用日志或 toast 或调试断点。如果一切都开始崩溃,那可能就是这样。

关于android - 解析文件查询不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29220145/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com