Hi ,
Can you please let me know how to open an excel sheet without saving it in the harddisk?I am using java for coding.
I reviewed the solutions for Net in Aspose forum.But iam not sure about the solution for Java.
Thanks
Priya
Hi ,
Can you please let me know how to open an excel sheet without saving it in the harddisk?I am using java for coding.
I reviewed the solutions for Net in Aspose forum.But iam not sure about the solution for Java.
Thanks
Priya
Hi Priya,
Thank you for considering Aspose.
Well, we are not very clear about your requirement. Please provide us some further details about your requirement.
If you requirement is to directly open a generate Excel file in browser without saving it to the hard drive in a java web application then it depends on which technology (JSP, JSF etc) you are using for web development. The process to open a workbook without saving to the disk will require you to save the workbook into ByteArrayOutputStream in memory using Workbook.Save() method of Aspose.Cells and then pass that to the Response object using your custom code to open it in browser (as per your web development technology).
Please provide us some further details about your development architecture (web technology you are using) and what exactly your requirement is, so we can provide you with an appropriate solution accordingly.
Thank You & Best Regards,
Thanks for the response.I am trying out a trial using jsp n servlet. I have a submit button in jsp, which when clicked should populate some values and open as excel sheet from the stream,i.e without saving in the hard disk.
I was successful in my trial with the help of the demo codes and your suggestions. Thanks again.