こんにちは、私はGoogle App Engineを初めて使用します。私の要件は、大きな Zip ファイルをブロブ ストアに保存し、ユーザーがダウンロード オプションをクリックしたときに Android アプリケーションに取得することです。 Android アプリケーションのエンジン ブロブ ストア。前もって感謝します。
2 に答える
The short answer is: yes you can.
First of all you will have to complete the example on how to upload stuff using Google App Engine and then experimenting with the Google Cloud Storage because it will be much cheaper in the long run.
After completing that you will realise that in order to upload, all you'll have to do is to POST multipart data either from Android or using any other method you would like. In that tutorial is also very obvious on how you could download any file back to your Android application.
You could also experiment with one of my examples for uploading files either on Blobstore or on Cloud Storage. In that particular example you are allowed to upload only images and PDF documents, but it's very easy to modify and accepting only ZIP files or whatever else you might want.
おそらく、Google Cloud Storage の方が適しているでしょう。 https://developers.google.com/appengine/docs/python/googlestorage/