我的问题非常简单或愚蠢。
好吧,我有一个方法,这个方法被多次调用
但我每次调用它都想在同一个Excel文件“Writefile”上创建一个新工作表
我知道每次调用方法时我都会覆盖Writefile
。
有人可以帮助我保留这种方法但不是覆盖,我想添加一个新表
public static void write(int t, @SuppressWarnings("rawtypes") List X, String Writefile,int repeat,List<String> Sheetname) {
String excelFileName = Writefile;
String sheetName = (String) X.get(0);// name of sheet based on the Content of the List
@SuppressWarnings("resource")
XSSFWorkbook wb = new XSSFWorkbook();
XSSFSheet sheet = wb.createSheet(sheetName);
//some details
}