解析文件查询不起作用

时间:2015-03-23 20:52:53

标签: android parse-platform imageview

我试图通过查询从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获取文件?感谢所有帮助。

2 个答案:

答案 0 :(得分:4)

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

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

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

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

如果您有一个普通的老用户,并且他的Parse ObjectId是xyz123ab,并且他在键/列profilePicture下有一个图片文件。您的用户包含包含图片数据的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...

另外,请确保您的数据已正确加载到服务器中。遗憾的是,在Web客户端上确定Parse可能很棘手。正确上传图像与此类似,但相反,并为另一天的答案。

请检查您的代码以获取objectId,如下所示:

objects.get(i).getObjectId()

确定您是否确实正在访问您认为自己的objectId,可能是使用日志或Toast或debug断点。这可能是一切都开始崩溃。

答案 1 :(得分:0)

您的代码看起来很好,您只需要检查当前行是否在其picture列中有文件引用。如果该列为空,那么当您将其作为ParseFile读取时,您显然会得到一个空引用。