【发布时间】:2014-09-03 23:57:18
【问题描述】:
我可以轻松地 upload/write 或 Read 来自 Google Cloud Storage 的文件内容 (~80KB)
现在,我必须在提供大文件 (~200MB-300MB) 的同时执行更大的任务:
1) 需要将上传文件的内容读取成块(~10 KB)。
<--Want to modify chunked data programmatically-->
2) 重复“1”步骤,直到流读取文件的全部内容(从开始到结束顺序)。
我尝试了this 程序,但作为响应,我只有一些数据量。如何执行上述任务?
【问题讨论】:
标签: java file google-app-engine google-cloud-storage blobstorage