1. 程式人生 > >springBoot 使用easypoi,在linux伺服器上無法 匯出excel問題

springBoot 使用easypoi,在linux伺服器上無法 匯出excel問題


使用的框架

excel工具 文件 http://www.afterturn.cn/doc/easypoi.html

根據文件,在windows上實現了excel下載功能,也是正常的。

但放在linux伺服器上時,無法載入到excel模版

報錯資訊

2018-02-28 11:32:04,295 [http-nio-8000-exec-3] ERROR [cn.afterturn.easypoi.cache.ExcelCache] - java.lang.NullPointerException
com.google.common.util.concurrent.UncheckedExecutionException: java.lang.NullPointerException
	at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2203)

excel模版路徑

src--

------main

------resources(模版放在這個路徑下)

easypoi的載入excel模版檔案的原始碼

package cn.afterturn.easypoi.cache.manager;

FileLoaderImpl

try {
            //先用絕對路徑查詢,再查詢相對路徑
            try {
                fileis = new FileInputStream(url);
            } catch (FileNotFoundException e) {
                //獲取專案檔案
                fileis = ClassLoader.getSystemResourceAsStream(url);
                if (fileis == null) {
                    //最後再拿想對檔案路徑
                    String path = PoiPublicUtil.getWebRootPath(url);
                    fileis = new FileInputStream(path);
                }
            }

後面瞭解到springBoot的檔案資源載入方式會有一些不同

參考如下的文章

Spring-boot 微服務jar包方式啟動,獲取jar內資原始檔到本地磁碟

http://blog.csdn.net/zhangjian15/article/details/73277796

就改變了實現方案

寫了一個方法:首先把找到的模版寫到磁碟,再把路徑傳給easypoi的工具類

修改前的呼叫方式

TemplateExportParams params = new TemplateExportParams("excelTemplate/myRepay.xls");

修改後
TemplateExportParams params = new TemplateExportParams(convertTemplatePath("excelTemplate/myRepay.xls"));


工具類

public static String convertTemplatePath(String path) {
        // 如果是windows 則直接返回
        // if (System.getProperties().getProperty("os.name").contains("Windows")) {
        // return path;
        // }

        Resource resource = new ClassPathResource(path);
        FileOutputStream fileOutputStream = null;
        // 將模版檔案寫入到 tomcat臨時目錄
        String folder = System.getProperty("catalina.home");
        File tempFile = new File(folder + File.separator + path);
        // System.out.println("檔案路徑:" + tempFile.getPath());
        // 檔案存在時 不再寫入
        if (tempFile.exists()) {
            return tempFile.getPath();
        }
        File parentFile = tempFile.getParentFile();
        // 判斷父資料夾是否存在
        if (!parentFile.exists()) {
            parentFile.mkdirs();
        }
        try {
            BufferedInputStream bufferedInputStream = new BufferedInputStream(resource.getInputStream());
            fileOutputStream = new FileOutputStream(tempFile);
            byte[] buffer = new byte[10240];
            int len = 0;
            while ((len = bufferedInputStream.read(buffer)) != -1) {
                fileOutputStream.write(buffer, 0, len);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fileOutputStream != null) {
                try {
                    fileOutputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return tempFile.getPath();
    }

由於是趕專案,沒有仔細研究了

有寫的不對的地方,還請大家多多指正