I have an existing excel file (2007) to write to. I open it like in c#
get the error: must support writing, BaseOutputstream
using (FileStream file = new FileStream(bestand, FileMode.Open, FileAccess.ReadWrite))
{
wb1 = new XSSFWorkbook(file);
// lots of stuff
}
wb1.close(file)get the error: must support writing, BaseOutputstream