I am trying to upload file to google sites and am obtaining the stream using apache commons file upload. I get the input stream as under

    InputStream is = fileItem.openStream();

How will I convert this input stream in file object so that below call succeeds and I am able to set the MediaFileSource to above converted file.

AttachmentEntry newAttachment = new AttachmentEntry();
newAttachment.setMediaSource(new MediaFileSource(file, fileMimeType));
link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You could use MediaStreamSource instead of MediaFileSource.

link|improve this answer
Thanx @BalusC , everything is working fine till I get this ServiceException that says "Not authorized to write to this feed" – dhaval Nov 18 '09 at 16:14
com.google.gdata.util.ServiceForbiddenException: OK Not authorized to write to this feed – dhaval Nov 18 '09 at 16:24
feedback

You have no write access to a file system on AppEngine and you're supposed to keep your data in datastore. However, gaefs project gives you a virtual file system and, as to the best pf my knowledge, supports file uploading.

link|improve this answer
I would prefer to upload directly from stream object, is it possible to customize the MediaFileSource in any way so that it takes *stream object – dhaval Nov 17 '09 at 18:32
Did you look at the code of gaefs servlet? It reads from a stream. You may also read App Engine docs: code.google.com/appengine/kb/java.html#fileforms – Dmitry Nov 17 '09 at 19:00
+1 for link to useful resource. – Carl Smotricz Nov 17 '09 at 19:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.