我想读取一个 excel 文件,如果有任何数据,那么我想将它设置为 null 然后开始写入它。这就是我将 excel 工作表数据设置为 null 的方法。我能够成功写入,但在写入之前我想将值设置为 null。
FileOutputStream out = null;
try{
FileInputStream file = new FileInputStream(new File("/test.xls"));
HSSFWorkbook oldFile = new HSSFWorkbook(file);
HSSFSheet sheet = oldFile.getSheetAt(0);
file.close();
oldFile.write(null);
outFile.close();
} catch(Exception e){
e.printStackTrace();
}