我制作了一个大约需要5秒的应用才能得到我想要的效果。使用VisualVm我只注意到以下代码花了4秒钟,共计69个文件:
FileInputStream matriculeFile = null;
XSSFWorkbook matriculeWorkbook = null;
XSSFSheet matriculeSheet = null;
try {
matriculeFile = new FileInputStream(new File(
sheetsDirectory + "\\" + matricule + ".xlsm")); // Open matricule file
matriculeWorkbook = new XSSFWorkbook(matriculeFile);
matriculeSheet = matriculeWorkbook.getSheetAt(0);
}catch(Exception e){e.getStackTrace();}
我的问题是。有没有其他方法可以获得相同的结果,节省时间,比如使用其他方法?
提前致谢