开发者

How-to use GAE Blobstore Java API with GWT?

开发者 https://www.devze.com 2023-01-13 12:16 出处:网络
I have GAE application and I\'d like to download CSV fil开发者_如何学运维e from Blobstore and display it in a table using GWT. Is there any example showing how to do this?I think you\'ll just have to

I have GAE application and I'd like to download CSV fil开发者_如何学运维e from Blobstore and display it in a table using GWT. Is there any example showing how to do this?


I think you'll just have to create a GWT-RPC service that reads the data from Blobstore using read(), converts the bytes back to csv, then puts it into some reasonable format (e.g., List<Row> or Map<String, Row> for some Row class you write) to return to the GWT client-side code.

0

精彩评论

暂无评论...
验证码 换一张
取 消