[测评系统]--测评系统核心代码库
林致杰
2023-02-14 cc62ddcadf43a41f932b4352e747dfacef5629e3
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();