【发布时间】:2015-10-25 14:47:16
【问题描述】:
我一整天都被困在这上面。我已经尝试了所有其他可用的方法来实现这一点。下面的方法几乎完成了工作,但它为变量文件提供了一个空指针异常。
下面的代码描述了保存数据
final ParseObject post = new ParseObject("Student");
post.put("name", nameS);
final ParseFile file = new ParseFile("photo.png", data);
file.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
post.put("studentPhoto", file);
Log.d("John", ""+ file);
}
});
post.put("author", ParseUser.getCurrentUser());
post.saveInBackground(new SaveCallback() {
public void done(ParseException e) {
if (e == null) {
// Saved successfully.
Toast.makeText(getApplicationContext(), "Saved", Toast.LENGTH_SHORT).show();
Intent intent = new Intent(AddStudentActivityEditText.this, AddStudentActivityTextView.class);
startActivity(intent);
} else {
// The save failed.
Toast.makeText(getApplicationContext(), "Failed to Save", Toast.LENGTH_SHORT).show();
Log.d(getClass().getSimpleName(), "User update error: " + e);
}
}
});
以下数据描述了检索数据
final ParseQuery<ParseObject> query = ParseQuery.getQuery("Student");
query.whereEqualTo("author", ParseUser.getCurrentUser());
query.findInBackground(new FindCallback<ParseObject>() {
@Override
public void done(List<ParseObject> objects, ParseException e) {
if (e == null) {
for (ParseObject text : objects) {
name.setText(text.getString("name"));
}
ParseQuery<ParseObject> query = ParseQuery.getQuery("Student");
query.whereEqualTo("author", ParseUser.getCurrentUser());
query.getFirstInBackground(new GetCallback<ParseObject>() {
public void done(ParseObject object, ParseException e) {
if (object != null) {
ParseFile file = (ParseFile)object.get("studentPhoto");
file.getDataInBackground(new GetDataCallback() {
public void done(byte[] data, ParseException e) {
if (e == null) {
Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
//use this bitmap as you want
photo.setImageBitmap(bitmap);
} else {
// something went wrong
}
}
});
} else {
Toast.makeText(getApplicationContext(), "Exception", Toast.LENGTH_SHORT) .show();
}
}
});
} else {
Toast.makeText(getApplicationContext(), "Exception", Toast.LENGTH_SHORT).show();
}
}
});
【问题讨论】:
标签: java android database parse-platform backend