[测评系统]--测评系统核心代码库
林致杰
2023-04-24 00a803a1fdccb8a93b76b8be3cef34d7fd6d401c
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();