Writing to a existing xls file using POI
问题 The scenario is roughly this: I have a java program with several methods getting called randomly. The first method will create an xls file using apache POI and will put the headers for the columns. All the other methods has to write a record into this file. The final method will first mail the created xls and then delete the xls. For above scenario is the below approach correct: 1) Create the file and put the header names in the first method: Workbook wb = new HSSFWorkbook(); CreationHelper