i am saving some records in an excel file on click of a button
currently i am hardcoding the path like
FileOutputStream fileOut = new FileOutputStream("c:\\test.xls");
but i want to take the path from user,i.e.,something like 'save as' option
how can i do it?
please help.
Thanks in advance.