//======================HELPER METHODS==================================
private String createImage() throws IOException, FileNotFoundException,
FinalizationException, LockException {
FileService fileService = FileServiceFactory.getFileService();
AppEngineFile file = fileService.createNewBlobFile("text/plain");
FileWriteChannel writeChannel = fileService
.openWriteChannel(file, true);
PrintWriter out = new PrintWriter(Channels.newWriter(writeChannel,
"UTF8"));
out.println("Hello");
out.close();