[测评系统]--测评系统核心代码库
zhijie
2023-10-22 3ac0b7f54a4a3d747ff43eb9e7ca619e5ef0f8d0
src/main/java/com/ots/common/utils/poi/ExcelUtil.java
@@ -501,7 +501,7 @@
    }
    
    public String getAbsoluteFile(String filename) {
        String downloadPath = EssConfig.getDownloadPath() + filename;
        String downloadPath = EssConfig.getDownloadPath() + "/" + filename;
        File desc = new File(downloadPath);
        if (!desc.getParentFile().exists()) {
            desc.getParentFile().mkdirs();
@@ -518,7 +518,7 @@
        return desc;
    }
    public File getAbsoluteFileZipByName(String filename) {
        String downloadPath = EssConfig.getDownloadPath() + filename;
        String downloadPath = EssConfig.getDownloadPath() + "/" + filename;
        File desc = new File(downloadPath);
        if (!desc.getParentFile().exists()) {
            desc.getParentFile().mkdirs();