Create CSV file and save to Blobstore

℡╲_俬逩灬. 提交于 2019-11-30 19:53:12

问题


Is it possible to create a CSV file and store, update it on AppEngine Blobstore. Also would it be possible to email this blobstore CSV file as attachment? If yes, are are any sample docs available to accomplish this.


回答1:


  1. Yes you can write data to blobstore, including CSV data (which is just text).

  2. You can also read data from blobstore, and create mail with attachment.

Update:

You can append to the file until it's finally closed - meaning you can append to it via a series of requests. But once closeFinally() is called, it becomes immutable - you can not append to it or change contents.



来源:https://stackoverflow.com/questions/9671252/create-csv-file-and-save-to-blobstore

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!