0
進出口使用下面的代碼只是爲了學習如何使用的FileService API,但我總是對的BlobKey越來越空,這裏是代碼:使用GAE的FileService API
AppEngineFile file = fileService.createNewBlobFile("text/plain");
BlobKey key = fileService.getBlobKey(file);
System.out.println("Blobkey: "+key);
它總是打印的blobKey:空
任何人都知道我做錯了什麼。我試過http://code.google.com/appengine/docs/java/blobstore/overview.html#Writing_Files_to_the_Blobstore的例子,但我不能得到它的工作。
正確的 - 你不能得到尚未敲定一個blob的關鍵。 –