2012-05-23 172 views
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 [],不能使它工作:(

回答

0

你需要將你的圖像轉換爲byte [],這就是我能夠做到的; My Code。在您的照片真的是。使用正確的filepath是我的麻煩。

許多電子郵件和問題上Parse.com後,我意識到,他們是不友善的android。只要我有更好的理解這一切,我打算在YouTube上發佈一些教程。

祝你好運!