Re: [appengine-java] Re: How to generate excel sheets in google appengine Java?

2010-11-19 Thread Tatyana
Also, in your servlet you may generate excel file by configuring response obj response.setContentType(application/CSV); set Content-Disposition, attachment; yourfile.csv); have response.getWriter().println( write your output with delimiters here); Your file will be formatted fine in both

[appengine-java] Re: How to generate excel sheets in google appengine Java?

2010-11-18 Thread Didier Durand
HI, One way is to go indirectly via Google Docs Spreadsheet and its API See http://code.google.com/apis/spreadsheets/ didier On Nov 19, 4:35 am, Rodel Ocampo rrocamp...@gmail.com wrote: Hi Guys. I'm new in developing system in gaej. How will i generate an excel sheet in my jsp file in google

Re: [appengine-java] Re: How to generate excel sheets in google appengine Java?

2010-11-18 Thread Meetu Maltiar
Hi, You can use java excel API's. It works for us. Maybe you can have a look at my blog http://thoughts.inphina.com/2010/09/08/generating-excel-files-on-google-app-engine-for-a-wicket-application/ Regards | Meetu Maltiar On Fri, Nov 19, 2010 at 9:44 AM, Didier Durand