创建workbook对象:
ins = new FileInputStream(fileTemp);wb = WorkbookFactory.create(ins);
-----wb对象的处理
-----写入excel
out = new FileOutputStream(fileTemp)
wb.write(out);
每次到wb.write();就卡住了,时间好长,不知道为什么,请问是什么原因,或者有没有其它的办法?非常感谢!
相关分类