Java和POI:创建新的Excel表格不会覆盖

时间:2017-07-24 15:46:45

标签: java excel apache-poi

我的问题非常简单或愚蠢。 好吧,我有一个方法,这个方法被多次调用 但我每次调用它都想在同一个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 
}

0 个答案:

没有答案