1
我正在嘗試使用parse.com爲Android創建平板電腦應用。 我不擅長的Android,但是我正在努力獲取和使用對象是:parse.com保存圖像
ParseFile applicantResume = (ParseFile)anotherApplication.get("applicantResumeFile");
applicantResume.getDataInBackground(new GetDataCallback() {
public void done(byte[] data, ParseException e) {
if (e == null) {
// data has the bytes for the resume
} else {
// something went wrong
}
}
});
好像我需要保存新的對象,我只是得到了,但我有它保存這樣的問題:
FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(data.getBytes());
fos.close();
任何想法如何保存數據?解析API說它是byte [],不能使它工作:(