我嘗試視頻的上傳與Brightcove公司在Java的集成:谷歌應用程序引擎 - Brightcove公司整合
http://support.brightcove.com/en/docs/java-example-upload-video
但隨着GAE我們不能在磁盤上寫的,所以我得到以下異常:
發生java.lang.NoClassDefFoundError: java.rmi.server.UID is a restricted class. Please see the Google App Engine developer's guide for more details.
例外在這一行:(UploadVideo.java)
// Parse the request into a list of DiskFileItems
List items = upload.parseRequest(request);
因爲它試圖使用org.apache.commons.fileupload.disk.*
,它不適用於GAE。
我正在尋找解決方法。看起來像它可能是非常棘手,所以我打開任何建議
是的,我認爲BlobStore不會工作,因爲文件的大小。我已經看過Google Cloud Storage,我想我會一路走下去,不用BrightCove,感謝您的幫助! –