Re: how to save a excel file using POI

2007-05-18 Thread Rajeshwar Mothe
hey raghav is it the thing u did if not send me u r code snippet and thanks for sending intresting querys and where r u working now and how the culture in u r company import java.io.*; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.hssf.usermodel.HSSFCell; import

Re: how to save a excel file using POI

2007-05-18 Thread Rajeshwar Mothe
hey raghav its intresting i think u did with overriding output stream i suppose. just send the code snippet just to watch and good work keep it up u rock it Cheers RAJESHWAR

Re: how to save a excel file using POI

2007-05-18 Thread Raghav
Rajeshwar, I was able to modify the file and save it back. Thanks for your help Raghav - To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta Poi Proj

Re: how to save a excel file using POI

2007-05-18 Thread Raghav
Rajeshwar Mothe gmail.com> writes: > > Hi raghava > > just write it into an out put stream and > > use request.getOutputStream(); > > it will give an option to save > > then save it > > if it is not still clear then reply me with u r entire code snippet i will > help u > > cheers >

Re: how to save a excel file using POI

2007-05-18 Thread Rajeshwar Mothe
Hi raghava just write it into an out put stream and use request.getOutputStream(); it will give an option to save then save it if it is not still clear then reply me with u r entire code snippet i will help u cheers RAJESHWAR VALUE LABS , INDIA

how to save a excel file using POI

2007-05-18 Thread Raghav
Hi Experts, I am reading a excel file from my file system (E:/myFile.xls) using the POIFS package. Using the POI package for excel, I modify the contents of this file. My question here is, how do I save back this same file to the file system. I am not able to get the writing stream to this becaus