I have GAE application and I’d like to download CSV file from Blobstore and display it in a table using GWT. Is there any example showing how to do this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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>orMap<String, Row>for someRowclass you write) to return to the GWT client-side code.